Skip to content

Instantly share code, notes, and snippets.

@dan
Created January 1, 2026 20:24
Show Gist options
  • Select an option

  • Save dan/63a73dc762e0015c8b8347854a1c0a21 to your computer and use it in GitHub Desktop.

Select an option

Save dan/63a73dc762e0015c8b8347854a1c0a21 to your computer and use it in GitHub Desktop.
Conky Config
conky.config = {
background = true,
update_interval = 2,
double_buffer = true,
no_buffers = true,
-- KDE STABLE SETTINGS
own_window = true,
own_window_type = 'normal',
own_window_transparent = true,
own_window_argb_visual = true,
own_window_argb_value = 0,
own_window_hints = 'undecorated,sticky,skip_taskbar,skip_pager,below',
alignment = 'top_right',
gap_x = 0,
gap_y = 100,
minimum_width = 420,
maximum_width = 420,
draw_shades = false,
draw_outline = false,
draw_borders = false,
use_xft = true,
font = 'JetBrains Mono:size=10',
xftalpha = 0.95,
default_color = '#9aa7b0',
color1 = '#00e5ff',
color2 = '#7c8a93',
color3 = '#00bcd4',
cpu_avg_samples = 2,
net_avg_samples = 2,
text_buffer_size = 4096,
};
conky.text = [[
${color1}${font JetBrains Mono:size=14}SYSTEM STATUS${font}
${color2}${time %Y-%m-%d} ${time %H:%M:%S}
${color3}HOST${color2}
${nodename}
${color3}MEMORY${color2}
${mem} / ${memmax}
${membar 8,300}
${color3}DISK${color2}
Root: ${fs_used /} / ${fs_size /}
${voffset 3}${color1}${font JetBrains Mono:size=12}CPU LOAD${font}${color2}
TOTAL (${cpu cpu0}%)
${cpubar 8,300}
C1 (${cpu cpu1}%)
${cpubar cpu1 6,300}
C2 (${cpu cpu2}%)
${cpubar cpu2 6,300}
C3 (${cpu cpu3}%)
${cpubar cpu3 6,300}
C4 (${cpu cpu4}%)
${cpubar cpu4 6,300}
${voffset 3}${color1}${font JetBrains Mono:size=12}NETWORK${font}${color2}
DOWN (${downspeedf wlp3s0} KB/s)
${voffset 1}${downspeedgraph wlp3s0 22,300}
UP (${upspeedf wlp3s0} KB/s)
${voffset 1}${upspeedgraph wlp3s0 22,300}
${voffset 3}${color1}${font JetBrains Mono:size=12}TOP CPU${font}${color2}
${top name 1} ${top cpu 1}%
${top name 2} ${top cpu 2}%
${top name 3} ${top cpu 3}%
]];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment