Created
April 15, 2009 23:26
-
-
Save edavis10/96099 to your computer and use it in GitHub Desktop.
Script I run to start up apps once Xorg logs me in
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 | |
| #### Startup some of my things | |
| ### DISPLAY 0.0 is my left monitor group | |
| ### DISPLAY 0.1 is my riight monitor group | |
| # Wrapper script to startup iceweasel/firefox using my default profile | |
| DISPLAY=":0.0" iceweasel-default.sh & | |
| DISPLAY=":0.0" icedove & | |
| DISPLAY=":0.0" epiphany http://tracks http://pandora.com & | |
| DISPLAY=":0.0" emacs.sh ~/tmp/scratch.txt & | |
| keytouchd & | |
| # Wrapper script to startup iceweasel/firefox using my dev profile | |
| DISPLAY=":0.1" iceweasel-dev.sh & | |
| DISPLAY=":0.1" skype & | |
| DISPLAY=":0.1" pidgin & | |
| DISPLAY=":0.1" synergys & | |
| DISPLAY=":0.1" oocalc & |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment