Several people who have seen screenshots of my desktop have asked me how I got a transparent Conky, was I using feh, what were my settings, etc. So I thought I'd post how I do it here, in hopes it will help others.
This is the main part of my ~/.conkyrc file that makes it all happen:
Most people seem to miss the "own_window_argb_visual true" line, and for kwin to natively create the transparency it needs to know the alpha channels. This line sets that. No need for feh or a second background image, kwin will now handle the transparency.
Other people have asked me how I get the degree symbol in my system temperatures. If you include the degree symbol in your conkyrc file and it doesn't display, or doesn't show-up properly, add this line:
These settings have worked in KDE 4.6 (when I first started using Conky) and newer versions, presently working in 4.10. I don't know if it will work in any older version. This is the result on my desktop:
This is the main part of my ~/.conkyrc file that makes it all happen:
Code:
background no own_window yes own_window_type normal own_window_argb_visual true own_window_transparent yes own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager double_buffer yes
Other people have asked me how I get the degree symbol in my system temperatures. If you include the degree symbol in your conkyrc file and it doesn't display, or doesn't show-up properly, add this line:
Code:
override_utf8_locale yes
Comment