How to make conky window stay visible after changing the focus, but with desktop icons visible as well?
Asked
Active
Viewed 2.3k times
4
-
2Possible duplicate of How to get conky to stay on the desktop – Tachyons Jan 11 '16 at 06:06
5 Answers
3
Edit conky
configuration file, i.e. open in gedit
from the terminal:
sudo -H gedit /etc/conky/conky.conf
This worked for me:
own_window yes
own_window_type normal
This worked too, but made desktop icons not visible at all or blinking
own_window no
own_window_type desktop
I have also modified conky
to be movable by removing undecorated
from:
own_window_hints
2
I just removed the line own_window_type desktop
entirely from the .conkyrc
file and now conky stays put when I click the desktop in Ubuntu 15.10 with Unity. Why? I dont know. :)
I only use:
own_window_class Conky
own_window yes
own_window_transparent yes
own_window_hints undecorated,sticky,skip_taskbar,skip_pager,below
-
1
-
From the .conkyrc file. I used Conky Manager and edited the .conkyrc file from the Conky Manager program and just removed the own_window_type desktop (or own_window_type normal) alltogether and that works fine on my system. – Fuzzybuzz Jan 16 '16 at 22:19
0
changing /etc/conky/conky.conf
or .conkyrc
doesn't work for me, instead changing the conf file for each widget worked.
for example:
gedit ~/.conky/Gotham/Gotham
change:
own_window_type normal
to:
own_window_type desktop
-
This makes conky disappear after clicking desktop. Unlike own_window_type normal – George Dirac Feb 20 '15 at 19:57
0
This worked for me:
In ccsm, deselect
General > General Options > Hide Skip Taskbar Windows
own_window_type normal
My system is Ubuntu 16.04.3 [Mate 1.16.1]

Phcem
- 11
- 1