Page 3 of 3

Re: Conky your way in 2.8?

PostPosted: Wed Jan 26, 2011 3:33 pm
by stanca
I was talking about that way: ;) :)
Screenshot.png

Re: Conky your way in 2.8?

PostPosted: Wed Jan 26, 2011 4:35 pm
by LINJEinc
guess i have to show my conky setup to :)

http://www.linjeinc.com/files/screen.png

Re: Conky your way in 2.8?

PostPosted: Wed Jan 26, 2011 8:30 pm
by billhedrick
OK I think I have it working correctly, I reinstalled conky through Synaptic, copied JOHNNYG's script into the .conkyrc file and set it to start on boot.
It sits below the apps, ubt it has a titlebar, so I am not sure if I want to try to fix that yet

Re: Conky your way in 2.8?

PostPosted: Thu Jan 27, 2011 2:34 am
by JOHNNYG
billhedrick wrote:OK I think I have it working correctly, I reinstalled conky through Synaptic, copied JOHNNYG's script into the .conkyrc file and set it to start on boot.
It sits below the apps, ubt it has a titlebar, so I am not sure if I want to try to fix that yet

My conky script runs conky like an open app, you can move it max and minimize, If you run Thee's conky builder.sh It will tailor your conky to your rig and and place the regular type set up to your desk top, Also google conky scripts and you will find many different types you can play with ! Ubuntu forum has a very long tread with all kinds of scripts !

Re: Conky your way in 2.8?

PostPosted: Tue Feb 15, 2011 7:55 pm
by TheGrandFinale2001
JOHNNYG wrote:
billhedrick wrote:OK I think I have it working correctly, I reinstalled conky through Synaptic, copied JOHNNYG's script into the .conkyrc file and set it to start on boot.
It sits below the apps, ubt it has a titlebar, so I am not sure if I want to try to fix that yet

My conky script runs conky like an open app, you can move it max and minimize, If you run Thee's conky builder.sh It will tailor your conky to your rig and and place the regular type set up to your desk top, Also google conky scripts and you will find many different types you can play with ! Ubuntu forum has a very long tread with all kinds of scripts !


My conky has been real slow to start up and when it does show up it just freezes. Have you or anyone else had that problem? Or know what it might be?

Re: Conky your way in 2.8?

PostPosted: Sat Mar 12, 2011 12:42 am
by dmbtimmyb21
TheGrandFinale2001 wrote:
JOHNNYG wrote:
billhedrick wrote:OK I think I have it working correctly, I reinstalled conky through Synaptic, copied JOHNNYG's script into the .conkyrc file and set it to start on boot.
It sits below the apps, ubt it has a titlebar, so I am not sure if I want to try to fix that yet

My conky script runs conky like an open app, you can move it max and minimize, If you run Thee's conky builder.sh It will tailor your conky to your rig and and place the regular type set up to your desk top, Also google conky scripts and you will find many different types you can play with ! Ubuntu forum has a very long tread with all kinds of scripts !


My conky has been real slow to start up and when it does show up it just freezes. Have you or anyone else had that problem? Or know what it might be?


Try this from terminal=>
killall conky
conky
And see what happens.

This could be a compiz-related issue: sometimes adding a simple script to delay the startup of conky will rectify this:
1) Create a file name .conky_start.sh in your Home Folder using a text editor (Show Hidden Files)
2) Paste this:
#!/bin/bash
sleep 20 && conky;

3) Then under System=>Preferences=>Startup Applications, Add a Startup Program that points to the command for the recently created script file.

Also, I have had issues with |whatismyip.org| timing out and hanging it {did NOT realize this was the culprit until I ran conky from terminal, no error would display when just using a typical run command [Alt+F2]}
Solution:
a)Open your .conkyrc file with a text editor, AND
b)Replace |whatismyip.org| with http://www.whatismyip.com/automation/n09230945.asp

Hope this information is helpful. Cheers.