Monitoring your system with Conky
Vital Signs
This light-weight system monitor keeps you informed about your computer's performance.
System monitoring utilities help users keep track of performance metrics, and the Linux environment offers a variety of useful monitoring utilities. One of the simplest and easiest of these monitoring tools is a desktop gem called Conky [1].
Conky's history goes back more than four years. At the time, the project was launched under the name Torsmo. After just one year, Conky forked from Torsmo. The project founders were inspired by the Canadian TV show "Trailer Park Boys" and chose one if its protagonists as the project name.
Conky not only displays CPU load and memory usage data, it also gives details on your hard disk and network traffic, evaluates the data from various sensors, integrates news feeds off the Internet, and provides information on a media player if a player happens to be active. To configure what you want the system monitor to show and how you want it shown to you is quite simple.
Installation
Conky is available from the repositories of most, but not all, popular distributions. Unless your choice of distribution does not come with Conky or – and this is more likely – you want to do something special with the tool, you will not need to build the system monitor yourself.
For an overview of the supported options, give the ./configure --help command after downloading the source code package [2] and unpacking it in a directory of your choice.
At this point you will see a number of options that are enabled or disabled by default. For example, if you use the Audacious media player, you will want to enable matching support in Conky by specifying --enable-audacious=yes. If your computer does not have sensors that check the hard disk temperature, you might want to disable the corresponding feature, enabled by default, by specifying --disable-hddtemp. If you fail to do so, Conky will issue an error message when you try to launch it.
After completing the settings, you can build and install Conky in the normal way: make && make install. Then give the conky command for a trial run. If you see a small window like that shown in Figure 1, or if Conky opens directly in the background as shown in Figure 2, the installation was successful.
Values
To customize Conky, the basic configuration file – depending on your distribution – is in /etc/conky/ or /usr/share/doc/conky/examples/. First copy the file to ~/.conkyrc and open it in an editor.
The file with the settings is divided into two sections: program options in the first part and display options in the second part of .conkyrc. The TEXT line separates the two. All of the content after this is displayed onscreen. A pound sign (#) will not comment out a line but will also appear onscreen.
In the first part, program options, Conky expects instructions on functionality. For example, you can position the program in the top right corner of the screen with the alignment top_right command, and default_color white sets the default color to white.
The update_interval 1 option tells Conky to parse and output the values every second. The display options are too numerous for me to go into detail here. A list of common program and display options are on the project website [3] [4]. If you prefer to refer to screenshots, some grabs of the matching Conky configuration file are at the same address [5].
Issue
If you do not launch Conky in a separate window, but directly on the KDE or Gnome desktop, you are in for an unpleasant surprise.
Because both KDE and Gnome draw their own desktops without concerning themselves with Conky's attempts to add its own output, the program flickers or disappears, then reappears, and disappears again, and so on.
The options for both GUIs, titled own_window and own_window_transparent yes, in .conkyrc tell Conky to use its own window and apply pseudo-transparency to the window, respectively. Unfortunately, both desktops have a couple of issues with the transparency option.
To resolve this, look for and enable the Support program in desktop window option below Look & Feel | Desktop | General in the KDE control center. Now when you launch Conky, it will appear onscreen and hopefully be flicker-free, although it will still use a black background instead of the KDE wallpaper. To change this, install Qiv [7], a tiny tool of just a couple of kilobytes, then launch it with the qiv --root ~/background.png command using your chosen background image.
As an alternative, you could also use Feh. The command here is feh --bg-center ~/background.png. Both Qiv and Feh make sure that the root window uses the KDE wallpaper. The situation is similar on Gnome, although the symptoms are different: missing icons on screen. The workaround in this case is the Devil's Pie [8] utility.
In your home directory, install the tool and create a hidden .devilspie directory. In the hidden directory, create a conky.ds file and open it for editing. Now copy the lines from Listing 1 into the file and launch the program by entering devilspie at the command line. After doing so, both Conky and the icons should be back to normal on the desktop.
Listing 1
conky.ds
(if (is (window_class) "Conky") (begin (pin) (undecorate) (wintype "dock") (skip_pager) (skip_tasklist) (below) ) )
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
AlmaLinux 10.0 Beta Released
The AlmaLinux OS Foundation has announced the availability of AlmaLinux 10.0 Beta ("Purple Lion") for all supported devices with significant changes.
-
Gnome 47.2 Now Available
Gnome 47.2 is now available for general use but don't expect much in the way of newness, as this is all about improvements and bug fixes.
-
Latest Cinnamon Desktop Releases with a Bold New Look
Just in time for the holidays, the developer of the Cinnamon desktop has shipped a new release to help spice up your eggnog with new features and a new look.
-
Armbian 24.11 Released with Expanded Hardware Support
If you've been waiting for Armbian to support OrangePi 5 Max and Radxa ROCK 5B+, the wait is over.
-
SUSE Renames Several Products for Better Name Recognition
SUSE has been a very powerful player in the European market, but it knows it must branch out to gain serious traction. Will a name change do the trick?
-
ESET Discovers New Linux Malware
WolfsBane is an all-in-one malware that has hit the Linux operating system and includes a dropper, a launcher, and a backdoor.
-
New Linux Kernel Patch Allows Forcing a CPU Mitigation
Even when CPU mitigations can consume precious CPU cycles, it might not be a bad idea to allow users to enable them, even if your machine isn't vulnerable.
-
Red Hat Enterprise Linux 9.5 Released
Notify your friends, loved ones, and colleagues that the latest version of RHEL is available with plenty of enhancements.
-
Linux Sees Massive Performance Increase from a Single Line of Code
With one line of code, Intel was able to increase the performance of the Linux kernel by 4,000 percent.
-
Fedora KDE Approved as an Official Spin
If you prefer the Plasma desktop environment and the Fedora distribution, you're in luck because there's now an official spin that is listed on the same level as the Fedora Workstation edition.