Files
dotfiles/setup.d/10-reattach-to-user-namespace.sh
Vasili Svirydau 6b2245dd16 mac changes
2021-04-28 23:47:04 -07:00

8 lines
174 B
Bash

#!/bin/bash
if [[ "$OSTYPE" == "darwin"* ]]; then
if ! command -v reattach-to-user-namespace > /dev/null; then
brew install reattach-to-user-namespace
fi
fi