Comment 11 for bug 1342123

Revision history for this message
Eric Broneer (ledoc) wrote :

@aj-sahagun

Works fine now. So apparently, when you want a couple of commands to be launched one after the other in the startup list, you can't just write:

    sleep 60; <command>

You have to explicitly call bash -c like this:

    bash -c 'sleep 60; <command>'

Good to know!