I want to run a GUI application as soon as x starts up in Ubuntu.
I thought upstart might work, so I created a conf file inside /etc/init/
but it seems that it's not working correctly.
start on startup
task
exec /home/camino/test/qt/guiapp
Any suggestions?
Oh, ubuntu...
Usually most distributions will let you start Xorg yourself rather than let a login manager do it such as GDM or KDM. If you run startx from the commandline, it will read the ~/.xinitrc and load any window managers or other stuff you put there. But since you have Ubuntu....
To run a script prior to GDM/KDM startup, you could either
Also check /etc/gdm/Init/Default maybe is what you want.
I suggest you go with 3 since its more simpler.
But why would you run any Xorg app before the login manager?