21

I'm running Ubuntu 10.10 Maverick.

I have a long list of startup applications as you can see here: startup apps

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?

Bruno Pereira
  • 72,895
  • 33
  • 199
  • 223
Martin Zeltin
  • 5,233
  • 9
  • 34
  • 40
  • 3
    Try giving it a name higher in the alphabetical order. I usually want my conky to start last so I name it ZZZ-Conky and that works for me – Nitin Venkatesh Jun 17 '11 at 15:40

2 Answers2

18

These will start in alphabetical order, so you can name the startup application 0-Chrome to start it before the others.

Parto
  • 15,027
  • 24
  • 86
  • 114
Amanda
  • 9,051
  • 17
  • 53
  • 98
5

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
Lekensteyn
  • 171,743
  • 65
  • 311
  • 401
lurven
  • 51
  • 1
  • 4
    If you make it executable, you do not need to add `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