-
-
Save githubhy/0c57c23a21f6d94b73d9 to your computer and use it in GitHub Desktop.
show/hide iTerm2 Dock icon
This file contains hidden or 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
# toggle iTerm Dock icon | |
# add this to your .bash_profile or .zshrc | |
function toggleiTerm() { | |
pb='/usr/libexec/PlistBuddy' | |
iTerm='/Applications/iTerm.app/Contents/Info.plist' | |
echo "Do you wish to hide iTerm in Dock?" | |
select ync in "Hide" "Show" "Cancel"; do | |
case $ync in | |
'Hide' ) | |
$pb -c "Add :LSUIElement bool true" $iTerm | |
echo "relaunch iTerm to take effectives" | |
break | |
;; | |
'Show' ) | |
$pb -c "Delete :LSUIElement" $iTerm | |
echo "run killall 'iTerm2' to exit, and then relaunch it" | |
break | |
;; | |
'Cancel' ) | |
break | |
;; | |
esac | |
done | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment