-
-
Save bendog/2f1a31ba9e53f8139f796e88539bd1ab to your computer and use it in GitHub Desktop.
Revisions
-
bendog revised this gist
Aug 16, 2017 . 1 changed file with 0 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -3,7 +3,6 @@ HOSTNAME=`echo $@ | sed s/.*@//` set_bg () { osascript -e "tell application \"Terminal\" to set current settings of window 1 to (first settings set whose name is \"$1\")" } -
bendog created this gist
Aug 16, 2017 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,20 @@ #!/bin/sh HOSTNAME=`echo $@ | sed s/.*@//` set_bg () { # osascript -e "tell application \"Terminal\" to set background color of window 1 to $1" osascript -e "tell application \"Terminal\" to set current settings of window 1 to (first settings set whose name is \"$1\")" } on_exit () { set_bg "BenDog" } trap on_exit EXIT case $HOSTNAME in bendog.org|celeste.bendog.org) set_bg "bendog.org" ;; *) set_bg "ssh" ;; esac /usr/bin/ssh "$@"