Author Topic: Installing and & Configuring Conky in KDE4  (Read 2257 times)

Offline Anikan

  • Jr. Member
  • **
  • Posts: 37
Installing and & Configuring Conky in KDE4
« on: August 08, 2009, 06:57:42 PM »
Install conky
# apt-get install conky --yes

To autostart conky create this link Actually this is not necessary
$ ln -s /usr/bin/conky ~/.kde4/Autostart/conkylink
conky can be autostarted from the fehconkybg script

Install feh
# apt-get install feh --yes

Make a script to allow transparency with the desktop
$ nano -w ~/.kde4/Autostart/fehconkybg

Add these lines
Code: [Select]
#!/bin/sh
sleep 1 && feh --bg-scale /usr/share/wallpapers/current.png
conky &
Change "current.png" to the current wallpaper being used
use --bg-center if you use a centered wallpaper.
or you could add this; This lets conky use the default kde4 wallpaper for its pseudo-transparency
Code: [Select]
feh --bg-scale /usr/share/wallpapers/Air/contents/images/1920x1200.jpg
conky &
while inotifywait ~/.kde4/share/config/plasma-appletsrc; do
feh --bg-scale /usr/share/wallpapers/Air/contents/images/1920x1200.jpg

Make it executable
     $ chmod +x ~/.kde4/Autostart/fehconkybg


Done!

Anikan
« Last Edit: August 08, 2009, 08:55:33 PM by Anikan »

Offline SmileeeM

  • Full Member
  • ***
  • Posts: 199
Re: Installing and & Configuring Conky in KDE4
« Reply #1 on: August 08, 2009, 08:50:22 PM »
Shouldn't it point to kde4 directory not kde?

$ chmod +x ~/.kde/Autostart/fehconkybg

Offline Anikan

  • Jr. Member
  • **
  • Posts: 37
Re: Installing and & Configuring Conky in KDE4
« Reply #2 on: August 08, 2009, 08:56:59 PM »
Shouldn't it point to kde4 directory not kde?

$ chmod +x ~/.kde/Autostart/fehconkybg

Yes you're 100% correct!
 I fixed it

Thank You

Anikan