Conky

From 太極
Revision as of 20:18, 31 August 2019 by Brb (talk | contribs) (Created page with "[http://conky.sourceforge.net/ Conky] is a free, light-weight system monitor for X, that displays any information on your desktop. * https://help.ubuntu.com/community/Setting...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Conky is a free, light-weight system monitor for X, that displays any information on your desktop.

Step 1. Install conky-all package

Step 2. create ~/.conkyrc file. This file can be downloaded from web.

Step 3. Run it: $ conky. If we want to run a specific configuration file, use conky -c CONKYRCFILE

Step 4. If you want to stop Conky: $ killall conky

Note that conky works automatically on Ubuntu's Unity.

For Lubuntu (tested on 14.04), the Conky's transparent function does not work at first. But This conkyrc works on Lubuntu desktop (mainly, tranparent function). To deal with the autostart, follow the suggestion from askubuntu.com. That is, go to ~/.config/autostart folder, create or copy+paste the file called conky.desktop with a content like

[Desktop Entry]
Type=Application
Exec=sh "/home/brb/.conky/conky-startup.sh"
Hidden=false
NoDisplay=false
X-GNOME-Autostart-enabled=true
Name[en_IN]=Conky
Name=Conky
Comment[en_IN]=
Comment=

and

brb@brb-VirtualBox:~$ cat .conky/conky-startup.sh 
conky &
exit 0
brb@brb-VirtualBox:~$ ls -l .conky/conky-startup.sh 
-rw-rw-r-- 1 brb brb 37 Aug 30 20:17 .conky/conky-startup.sh

Another way to configure conky is to install conky-manager. See this and project website page. But it seems it does not work well with desktop wallpaper.