Skip to content

Instantly share code, notes, and snippets.

@flauschtrud
Created December 10, 2020 20:55
Show Gist options
  • Save flauschtrud/aaf7d56a2d809b9bd195fcc0a571017b to your computer and use it in GitHub Desktop.
Save flauschtrud/aaf7d56a2d809b9bd195fcc0a571017b to your computer and use it in GitHub Desktop.
Simple and Minimalistic Conky Theme with Basic Stats
conky.config = {
use_xft = true,
alignment = 'top_left',
gap_x = 50,
gap_y = 50,
minimum_width = 400,
update_interval = 1.0,
background = false,
default_color = 'white',
default_outline_color = 'white',
default_shade_color = 'white',
double_buffer = true,
draw_borders = false,
draw_graph_borders = true,
draw_outline = false,
draw_shades = false,
extra_newline = false,
font = 'DejaVu Sans Mono:size=12',
cpu_avg_samples = 2,
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_type = 'desktop',
own_window_colour = '000000',
own_window_argb_visual = true,
own_window_argb_count = 0,
own_window_transparent = true,
show_graph_range = false,
show_graph_scale = false,
stippled_borders = 0,
uppercase = false,
use_spacer = 'none',
}
conky.text = [[
$sysname $nodename
$kernel $machine
${color grey}Uptime$color $uptime
${color grey}Upload$color ${totalup wlp3s0}
${color grey}Download$color ${totaldown wlp3s0}
${color grey}RAM Usage$color ${alignr} $mem - $memperc%
${membar 6}
${color grey}CPU Usage$color ${alignr} $cpu%
${cpubar 6}
${color grey}Root $color ${alignr} ${fs_used /}/${fs_size /}
${fs_bar 6 /}
]]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment