Open a terminal and run conky -c ~/.config/conky/conky.conf and minimize all your open windows. Somewhere on your screen you'll see the following image:
Note that you want to make some changes:
modify own_window_colour = '252525' to any other hex color you want. There's no need to include #.
gap_x = 100 positions the conky window 100px from the left of the screen. Change as per your needs.
gap_y = 200 positions the conky window 200px from the bottom of the screen. Change as per your needs.
in the section "conky.txt", you can change the text color to your preference using hex colors as described above or color names as found in /usr/share/X11/rgb.txt.
you can play with font and font size, voffset and what you want in terms of time formats (as described in man date).
the line own_window_type = 'desktop', helps keep conky visible in Ubuntu 19.10 when minimizing all other open windows (aka Show Desktop) using Ctrl+Meta+D.
Once, you're happy, you can get conky to run on startup by adding it to your distro's autostart.
Install conky by running
sudo apt install conky-all
Create the folder conky in
~/.config
. Then, in~/.config/conky
, create an empty plain text file calledconky.conf
.Open a plain text editor, paste the following content into
conky.conf
and save the file:Open a terminal and run
conky -c ~/.config/conky/conky.conf
and minimize all your open windows. Somewhere on your screen you'll see the following image:Note that you want to make some changes:
own_window_colour = '252525'
to any other hex color you want. There's no need to include#
.gap_x = 100
positions the conky window 100px from the left of the screen. Change as per your needs.gap_y = 200
positions the conky window 200px from the bottom of the screen. Change as per your needs./usr/share/X11/rgb.txt
.man date
).own_window_type = 'desktop',
helps keep conky visible in Ubuntu 19.10 when minimizing all other open windows (aka Show Desktop) using Ctrl+Meta+D.Once, you're happy, you can get conky to run on startup by adding it to your distro's autostart.
Credit: code is based on Conky Modern.