Last active
November 10, 2016 12:01
-
-
Save thewellington/6736152 to your computer and use it in GitHub Desktop.
This is a simple script I use to start my day in OS X
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
#!/bin/bash | |
# | |
# start-the-day.sh | |
# I use this script to start all the programs I need to "start my day" | |
# | |
# v1.7 2013-01-12 by [email protected] | |
source ~/bin/switch.sh | |
open -a "TotalTerminal" -F -g | |
sleep 1 | |
switch 1 | |
open -a "Mail" -F -g | |
open -a "Calendar" -F -g | |
open -a "Messages" -F -g | |
sleep 10 | |
switch 2 | |
open -a "TweetDeck" -F -g | |
open -a "Spotify" -F -g | |
#open -a "Microsoft Lync" -F -g | |
open -a "HipChat" -F -g | |
open -a "Textual 5" -F -g | |
sleep 10 | |
# switch 3 | |
# open -a "Safari" -F -g | |
# sleep 5 | |
# switch 5 | |
# open -a "Tower" -F -g | |
# sleep 5 | |
switch 1 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment