Tiny Core Linux
Tiny Core Extensions => TCE Q&A Forum => Topic started by: linus72 on July 09, 2009, 11:10:39 AM
-
I installed conky in tc 2.1, but can't find .conkyrc; shouldn't it be in home/tc?
help
-
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.
-
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
-
Much thanks to both of you!:)
Now, is .conkyrc as easy to edit as .jwmtheme, etc?
hope so.
-
Oh, how do I start conky automatically at desktop load?
thanks
-
Add the command to .xsession before any wait/exec lines (it should also probably be backgrounded by appending &)
-
So...do you mean like this or what?
/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
-
Without the $ in the beginning, and it should go after waitforX
-
;DThanks Curaga
that works great!
-
Is there a way to set the conky window to be the topmost window/layer upon boot?