View Full Version : Conky disappears after start up
navneeth
June 7th, 2007, 09:33 AM
After the Ubuntu splash* appears, I get a plain Ubuntu light-brown background(similar to the one in the picture). The wallpaper takes sometime to come on; but before it does, the bottom panel, the terminal and conky show up. But as soon as the wp comes up, conky disappears. But it still shows up under the Processes tab in the System Monitor. How do I make sure that conky doesn't disappear?
Thanks for any help.
*http://www.guia-ubuntu.org/images/thumb/4/43/Ubuntu-splash.jpg/180px-Ubuntu-splash.jpg
happy-and-lost
June 7th, 2007, 09:47 AM
Conky is launched before Nautilus, so the wallpaper is covering it. Launch Conky from a sleeping script to get around that problem. Like this:
nano .conkylaunch
Into that file paste:
#!/bin/bash
sleep 10 &&
conky &
exit
Then chmod +x .conkylaunch
And add this script to the startup.
If the problem persists, change the sleep value unil you've given Nautilus enough time to load.
navneeth
June 7th, 2007, 11:33 AM
Thank you. 20 works fine for me. :)
dannymichel
June 12th, 2007, 06:34 PM
Conky is launched before Nautilus, so the wallpaper is covering it. Launch Conky from a sleeping script to get around that problem. Like this:
nano .conkylaunch
Into that file paste:
#!/bin/bash
sleep 10 &&
conky &
exit
Then chmod +x .conkylaunch
And add this script to the startup.
If the problem persists, change the sleep value unil you've given Nautilus enough time to load.
Open the terminal, copy and paste nano .conkylaunch then enter?
then copy and paste#!/bin/bash
sleep 10 &&
conky &
exitinto that weird window that appears?
That weird window doesn't allow me to save.
Ho wdo I CHMOD after I figure out what is going on
nickless
June 13th, 2007, 07:30 AM
you don't have to use nano. Use your favorite text editor, like gedit:
gedit .conkylaunch
after pasting the script just type in your terminal:
chmod +x .conkylaunch
and hit enter. That makes the file executeable.
To start the script you will have to type:
sh /home/YOURUSERNAME/.conkylaunch
This is also the code you should add to your session dialog, to let conky start at your startup.
S.Peterman
July 4th, 2007, 10:57 PM
Just wanted to say thanks, this is exactly what I needed to get conky working properly.
daniel_szollosi-nagy
December 30th, 2007, 08:37 PM
This post came up as the first result in Google for "conky disappears" - fixed my problem right off the bat. Thanks for the info guys!
wormser
March 13th, 2008, 08:25 PM
This resolved my problem. I used 20.
vBulletin® v3.8.0 Release Candidate 2, Copyright ©2000-2009, Jelsoft Enterprises Ltd.