Created
December 15, 2009 06:51
-
-
Save mikhailov/256747 to your computer and use it in GitHub Desktop.
I'm working with 12 desktop workspaces (every app started on his own workspace). Startup script of mine
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/sh | |
# Waiting for desktop loaded | |
sleep 10 | |
wmctrl -o 1500,0 && /opt/google/chrome/google-chrome 2>&1 & | |
sleep 2 | |
wmctrl -o 3000,0 && opera 2>&1 & | |
sleep 2 | |
wmctrl -o 4500,0 && thunderbird 2>&1 & | |
sleep 3 | |
wmctrl -o 13000,0 && keepassx 2>&1 & | |
sleep 2 | |
wmctrl -o 14500,0 && rhythmbox 2>&1 & | |
sleep 3 | |
wmctrl -o 10000,0 && skype 2>&1 & | |
godesk 2>&1 & | |
sleep 5 | |
wmctrl -o 0,0 && firefox 2>&1 & | |
sleep 5 | |
wmctrl -o 6500,0 && /usr/local/netbeans-6.8/bin/netbeans 2>&1 & |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment