You are not logged in.
Pages: 1
Hi
I have managed to get Conky running in Q4OS, but any Conky theme I use has a drop shadow added to the Conky window, even with all the window formatting disabled in Conky. I suspect this may have something to do with the Trinity Desktop compositor. Is there a specific setting that excludes Conky windows from compositor formatting?
Offline
Hi
I have managed to get Conky running in Q4OS, but any Conky theme I use has a drop shadow added to the Conky window, even with all the window formatting disabled in Conky. I suspect this may have something to do with the Trinity Desktop compositor. Is there a specific setting that excludes Conky windows from compositor formatting?
Show us your .conkyrc or conky.conf file.
Offline
Here is the conky.conf content:
--[[
# Minimalis Conky 1.3
# Author : archit3x
# Release date : 4 December 2020
# Tested on : Archlinux ARM - XFCE Desktop
# Email : archit3x@archlinux.us
# Feel free to modity this script ;)
]]
conky.config = {
alignment = 'top_right',
background = false,
border_width = 0,
cpu_avg_samples = 2,
default_color = 'gray',
default_outline_color = 'white',
default_shade_color = 'white',
color1 = '#eaac14',
double_buffer = true,
draw_borders = false,
draw_graph_borders = true,
draw_outline = false,
draw_shades = false,
extra_newline = false,
font = 'Droid:size=9',
gap_x = 30,
gap_y = 30,
minimum_height = 250,
minimum_width = 220,
net_avg_samples = 2,
no_buffers = true,
out_to_console = false,
out_to_ncurses = false,
out_to_stderr = false,
out_to_x = true,
own_window = true,
own_window_transparent = true,
own_window_argb_visual = true,
own_window_argb_value = 0,
own_window_class = 'Conky',
own_window_type = 'normal',
own_window_hints ='undecorated,sticky,skip_taskbar,skip_pager,below',
show_graph_range = false,
show_graph_scale = false,
stippled_borders = 0,
update_interval = 1.0,
uppercase = false,
use_spacer = 'none',
use_xft = true,
}
conky.text = [[
${color1}${font ConkySymbols:size=20}t${font} ${voffset -10}GNU/Linux» $hr ${color}
${color1}${goto 35}OS : ${color}${execi 86400 cat `ls -atr /etc/*-release | tail -2` | grep "PRETTY_NAME" | cut -d= -f2 | sed 's/"//g'}
${color1}${goto 35}Kernel : ${color}$kernel on $machine
${color1}${font ConkySymbols:size=16}f${font} ${voffset -10} System» $hr${color}
${color1}${goto 35}Core 1 : ${color}${freq_g 1}GHz ${alignr}${cpu cpu0}% ${cpubar cpu0 4,100}
${color1}${goto 35}Uptime : ${color}$uptime_short
${color1}${font ConkySymbols:size=16}J${font} ${voffset -10}Memory» $hr${color}
${color1}${goto 35}RAM : ${color}$mem/$memmax ${alignr}$memperc% ${membar 4,100}
${color1}${goto 35}SWAP: ${color}$swap/$swapmax $alignr}$swapperc% ${swapbar 4,100}
${color1}${font ConkySymbols:size=16}k${font} ${voffset -10} Storage» $hr${color}
${color1}${goto 35}ROOT : ${color}${fs_used /}/${fs_size /} ${alignr}${fs_used_perc /}% ${fs_bar 4,100 /}
${goto 35}
]]
Offline
Here is the conky.conf content:
--[[ # Minimalis Conky 1.3 # Author : archit3x # Release date : 4 December 2020 # Tested on : Archlinux ARM - XFCE Desktop # Email : archit3x@archlinux.us # Feel free to modity this script ;) ]] conky.config = { alignment = 'top_right', background = false, border_width = 0, cpu_avg_samples = 2, default_color = 'gray', default_outline_color = 'white', default_shade_color = 'white', color1 = '#eaac14', double_buffer = true, draw_borders = false, draw_graph_borders = true, draw_outline = false, draw_shades = false, extra_newline = false, font = 'Droid:size=9', gap_x = 30, gap_y = 30, minimum_height = 250, minimum_width = 220, net_avg_samples = 2, no_buffers = true, out_to_console = false, out_to_ncurses = false, out_to_stderr = false, out_to_x = true, own_window = true, own_window_transparent = true, own_window_argb_visual = true, own_window_argb_value = 0, own_window_class = 'Conky', own_window_type = 'normal', own_window_hints ='undecorated,sticky,skip_taskbar,skip_pager,below', show_graph_range = false, show_graph_scale = false, stippled_borders = 0, update_interval = 1.0, uppercase = false, use_spacer = 'none', use_xft = true, } conky.text = [[ ${color1}${font ConkySymbols:size=20}t${font} ${voffset -10}GNU/Linux» $hr ${color} ${color1}${goto 35}OS : ${color}${execi 86400 cat `ls -atr /etc/*-release | tail -2` | grep "PRETTY_NAME" | cut -d= -f2 | sed 's/"//g'} ${color1}${goto 35}Kernel : ${color}$kernel on $machine ${color1}${font ConkySymbols:size=16}f${font} ${voffset -10} System» $hr${color} ${color1}${goto 35}Core 1 : ${color}${freq_g 1}GHz ${alignr}${cpu cpu0}% ${cpubar cpu0 4,100} ${color1}${goto 35}Uptime : ${color}$uptime_short ${color1}${font ConkySymbols:size=16}J${font} ${voffset -10}Memory» $hr${color} ${color1}${goto 35}RAM : ${color}$mem/$memmax ${alignr}$memperc% ${membar 4,100} ${color1}${goto 35}SWAP: ${color}$swap/$swapmax $alignr}$swapperc% ${swapbar 4,100} ${color1}${font ConkySymbols:size=16}k${font} ${voffset -10} Storage» $hr${color} ${color1}${goto 35}ROOT : ${color}${fs_used /}/${fs_size /} ${alignr}${fs_used_perc /}% ${fs_bar 4,100 /} ${goto 35} ]]
Try changing
background = false,
to
background = true,
and remove
own_window_argb_value = 0,
note that it needs to be removed, commenting won't work. Make a conky.conf copy first, if you like.
cp /path/to/conky/conky.conf conky.conf.bak #sudo cp if /path/to/conky/conky.conf is /etc/conky/conky.conf
then try the changes I suggest, if they don't work, just revert the changes
cp /path/to/conky/conky.conf.bak conky.conf #use sudo if needed as explained above
Offline
Thanks, I will try these changes.
Offline
Pages: 1