WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: Where is .conkyrc?  (Read 5315 times)

Offline linus72

  • Full Member
  • ***
  • Posts: 196
  • Damn it Jim!
Where is .conkyrc?
« on: July 09, 2009, 08:10:39 AM »
I installed conky in tc 2.1, but can't find .conkyrc; shouldn't it be in home/tc?
help

Offline danielibarnes

  • Hero Member
  • *****
  • Posts: 548
Re: Where is .conkyrc?
« Reply #1 on: July 09, 2009, 09:51:48 AM »
You have to make your own using the /etc/conky/conky.conf example.

I created an extension I call "myconky.tce" that includes my custom /home/tc/.conkyrc file and a /usr/local/tce.installed/myconky script that contains only "conky -d -q". I also have a myconky.tce.dep which specifies conky.tczl as a dependency, so when I boot up it pops up properly configured without having to use the backup/restore mechanism of mydata.tgz.


Offline curaga

  • Administrator
  • Hero Member
  • *****
  • Posts: 10986
Re: Where is .conkyrc?
« Reply #2 on: July 09, 2009, 09:54:25 AM »
Seems the 2.x conky extension doesn't include an example config file.
Grab a base config file from:
http://conky.sourceforge.net/screenshots.html
The only barriers that can stop you are the ones you create yourself.

Offline linus72

  • Full Member
  • ***
  • Posts: 196
  • Damn it Jim!
Re: Where is .conkyrc?
« Reply #3 on: July 09, 2009, 11:57:25 AM »
Much thanks to both of you!:)

Now, is .conkyrc as easy to edit as .jwmtheme, etc?
hope so.

Offline linus72

  • Full Member
  • ***
  • Posts: 196
  • Damn it Jim!
Re: Where is .conkyrc?
« Reply #4 on: July 09, 2009, 12:04:53 PM »
Oh, how do I start conky automatically at desktop load?
thanks

Offline ^thehatsrule^

  • Administrator
  • Hero Member
  • *****
  • Posts: 1726
Re: Where is .conkyrc?
« Reply #5 on: July 09, 2009, 10:13:50 PM »
Add the command to .xsession before any wait/exec lines (it should also probably be backgrounded by appending &)

Offline linus72

  • Full Member
  • ***
  • Posts: 196
  • Damn it Jim!
Re: Where is .conkyrc?
« Reply #6 on: July 10, 2009, 05:20:51 AM »
So...do you mean like this or what?

Code: [Select]
/usr/bin/Xvesa -br -screen 1024x768x32 -shadow -mouse /dev/input/mice,5 -nolisten tcp -I 2>&1 > /dev/null &
$ /usr/local/bin/conky &
waitforX
export ICONS=`cat /etc/sysconfig/icons`
export DESKTOP=`cat /etc/sysconfig/desktop`
"$DESKTOP" 2>/tmp/wm_errors &
export WM_PID=$!
[ -x ./.setbackground ] && ./.setbackground
[ -x ./.mouse_config ] && ./.mouse_config &
wait $WM_PID

I have 0 programming experience, so have no idea how to write it out. :-\
thanks

Offline curaga

  • Administrator
  • Hero Member
  • *****
  • Posts: 10986
Re: Where is .conkyrc?
« Reply #7 on: July 10, 2009, 06:15:39 AM »
Without the $ in the beginning, and it should go after waitforX
The only barriers that can stop you are the ones you create yourself.

Offline linus72

  • Full Member
  • ***
  • Posts: 196
  • Damn it Jim!
Re: Where is .conkyrc?
« Reply #8 on: July 10, 2009, 06:42:55 AM »
 ;DThanks Curaga
that works great!


Offline 3rail

  • Full Member
  • ***
  • Posts: 114
Re: Where is .conkyrc?
« Reply #9 on: July 13, 2009, 08:10:20 PM »
Is there a way to set the conky window to be the topmost window/layer upon boot?