you need to add a sleep into the startup script
I find it just easier to type 'conky' into the run command area on the toolbar
Hello,
Ive been trying for sometime now to get conky to startup automatically. At first I decided to create a .conky_start.sh script to start it and then added that to the init.d for when the computer starts, however i noticed that this tries to run conky during the splash screen for booting, returning the errer "Conky: failed to start...blah blah" and read that this is because you cannot have the script run until after X is started. I then tried to add the script to the .xinitrc file. Once again with no luck. Any ideas how i can have conky load shortly after startup?
Thanks
you need to add a sleep into the startup script
I find it just easier to type 'conky' into the run command area on the toolbar
don't worry about me I am msfconsole retarded
nano .conky_start.sh
Then in startup applications add the .conky_start.sh script.Code:#!/bin/bash sleep 20 && conky
Of course, if you really wanted to have some fun, go to Wal-Mart late at night and ask the greeter if they could help you find trashbags, roll of carpet, rope, quicklime, clorox and a shovel. See if they give you any strange looks. --Streaker69
If you want it to run only when you start KDE, put the .conky_start.sh file in /root/.kde3/Autostart/ (without the sleep part, there's no need for that if you do this). It will only run after running "startx".
Last edited by Snayler; 12-25-2010 at 03:44 PM. Reason: wrong directory (.kde -> .kde3)
I have enabled the gui login, so I do not have to type startx when I login. I have found this keeps things from the Autostart folder from running, any idea how to start it after login witht the gui?