I'm running Ubuntu 10.10 Maverick.
I have a long list of startup applications as you can see here:
I have added an entry for Google Chrome, and I would like Google Chrome to start like first of all the other applications... How is this done?
I'm running Ubuntu 10.10 Maverick.
I have a long list of startup applications as you can see here:
I have added an entry for Google Chrome, and I would like Google Chrome to start like first of all the other applications... How is this done?
You can use a startup script and make it look like:
#!/bin/bash
app1 &
app2 &
sleep 2s
app3 &
Make it executable and add an entry in the startup applications like:
sh /path/to/startupscript.sh
sh
before it. bash
!= sh
, so bash /path/to/script.sh
is something different than sh /path/to/script.sh
.
– Lekensteyn
Jun 17 '11 at 17:21