i haved configured my conky, and i want to run it on startup, i did found some tuts on internet, i haved put my conky in the startup, but in the screen, it just show just a second and gone..so how will i resolve that?

link|improve this question

31% accept rate
feedback

3 Answers

up vote 2 down vote accepted

Simple... Create .startconky at ~/

Insert code below

#! /bin/sh -e
sleep 15
conky
exit 0

Then create an Startup Application. Under System->Preferences

And at command line field.

/bin/sh /home/username/.startconky

Thats all.

link|improve this answer
feedback

Well, first we'd need to get to the bottom of the problem. Does running conky from a terminal work? We can tell for sure that conky itself is not the problem. If you go into Startup Applications and change the Conky entry to sleep 35 && conky does it run? Yes? Problem solved.

link|improve this answer
feedback

Adding conky to my startup apps also didn't work very well for me. Instead, I added a shell script which sleeps for about 30 seconds, and then launches conky against my customized configuration scripts. I added that script to my startup applications.

#/bin/bash
sleep 30
conky -q -c ~/conkys/conkyrc_wireless.sh &
conky -q -c ~/conkys/conkyrc_weather.sh &
...
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.