Last active
September 15, 2016 13:39
-
-
Save jlnwlf/25e2da1d8d1ff07c88a27667a0f8bb64 to your computer and use it in GitHub Desktop.
Bash script to hack iTerm 2/3 to use hotkey window on every space without loosing focus on Mac OS 10.9/10/...
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fixiterm () { | |
/usr/libexec/PlistBuddy -c 'Add :LSUIElement bool true' /Applications/iTerm.app/Contents/Info.plist | |
} | |
unfixiterm () { | |
/usr/libexec/PlistBuddy -c 'Delete :LSUIElement' /Applications/iTerm.app/Contents/Info.plist | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment