Mercurial > hg > config
annotate bin/setup-X.sh @ 378:0e99d3a68066
notes to self....that didnt quite do what we wanted :(
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Wed, 24 Jul 2013 19:36:46 -0700 |
parents | d0da972238d0 |
children | 7931adb82ce7 |
rev | line source |
---|---|
360 | 1 #!/bin/bash |
2 | |
3 # daemons | |
378
0e99d3a68066
notes to self....that didnt quite do what we wanted :(
Jeff Hammel <jhammel@mozilla.com>
parents:
360
diff
changeset
|
4 for i in nm-applet gkrellm diodon # 'synapse -s' |
0e99d3a68066
notes to self....that didnt quite do what we wanted :(
Jeff Hammel <jhammel@mozilla.com>
parents:
360
diff
changeset
|
5 # To add: x-tile; qamixer (well, some mixer); gnome-activity journal |
360 | 6 do |
7 if ! ps aux | grep ${i} | grep -v 'grep' | |
8 then | |
9 echo "not running: $i" | |
10 if which ${i} | |
11 then | |
12 ${i} & | |
13 fi | |
14 fi | |
378
0e99d3a68066
notes to self....that didnt quite do what we wanted :(
Jeff Hammel <jhammel@mozilla.com>
parents:
360
diff
changeset
|
15 done |
0e99d3a68066
notes to self....that didnt quite do what we wanted :(
Jeff Hammel <jhammel@mozilla.com>
parents:
360
diff
changeset
|
16 |
0e99d3a68066
notes to self....that didnt quite do what we wanted :(
Jeff Hammel <jhammel@mozilla.com>
parents:
360
diff
changeset
|
17 # TODO: add workspace specific programs |