I'm using Ubuntu 16.04 and when I press Ctrl+Super+D to show up my desktop, conky disappears.
Asked
Active
Viewed 6,873 times
5 Answers
5
This works for me with the Cinnamon desktop environment. (Linux Mint 18 - Which is essentially Ubuntu 16.04)
In my conky config:
own_window_class Conky
own_window yes
own_window_type dock
If that doesn't work in Unity (what comes with Ubuntu, try this)
own_window yes
own_window_type normal
or
own_window no
own_window_type desktop
Source: How to fix: conky disappears after click on desktop or other window?
1
I use Ubuntu Mate 18.04 and I had the same problem. I changed
own_window_type = 'normal',
to
own_window_type = 'desktop',
and the issue seems to be fixed

karmakar
- 11
1
On Lubuntu 16.04, these worked for me for multiple conky themes:
own_window yes
own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
own_window_transparent yes
own_window_type normal

Mehrdad Salimi
- 133
- 1
- 1
- 6
0
In ~/.conkyrc
own_window = false,
own_window_class = 'conky',
own_window_type = 'desktop'
worked for me with Unity. It still disappears momentarily, but it comes back as soon as it updates.

GameKyuubi
- 111
-1
In my case:
Operating System: Manjaro Linux
KDE Plasma Version: 5.23.5
KDE Frameworks Version: 5.90.0
Qt Version: 5.15.2
Kernel Version: 5.15.16-1-MANJARO (64-bit)
Graphics Platform: X11
Processors: 8 × Intel® Core™ i5-8265U CPU @ 1.60GHz
Memory: 31.2 ГиБ of RAM
Graphics Processor: Mesa Intel® UHD Graphics 620
I use this settings additional to default settings:
own_window = true,
own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager',
own_window_transparent = true,
own_window_type = 'normal',
in ~.config/conky/conky.conf
And the issue has been fixed.
Thanks to Mehrdad Salimi

Gigses
- 1
own_window_type dock
– Elysium Oct 05 '16 at 11:43