2014-07-17 18:34:22 -04:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# shutdown vagrant boxes
|
|
|
|
for box in $(vagrant global-status|grep running|awk '{ print $1 }'); do vagrant halt $box; done
|
|
|
|
|
|
|
|
# kill tmux sessions
|
|
|
|
tmux kill-server
|
|
|
|
|
|
|
|
# quit apps
|
2014-12-30 17:08:21 -05:00
|
|
|
osascript -e 'quit app "emacs"'
|
|
|
|
osascript -e 'quit app "textual 5"'
|
|
|
|
osascript -e 'quit app "adium"'
|
|
|
|
osascript -e 'quit app "flowdock"'
|
|
|
|
osascript -e 'quit app "skype"'
|
|
|
|
osascript -e 'quit app "slack"'
|
2014-07-17 18:34:22 -04:00
|
|
|
|
|
|
|
uncommitted ~/Projects ~/.homesick
|