Skip to content

Instantly share code, notes, and snippets.

@CheesecakeCG
Last active October 9, 2018 17:10
Show Gist options
  • Save CheesecakeCG/7d88fcc9976cdc34824e88cb7c859437 to your computer and use it in GitHub Desktop.
Save CheesecakeCG/7d88fcc9976cdc34824e88cb7c859437 to your computer and use it in GitHub Desktop.
Fancy Conky Config based on one from the wiki
conky.config = {
use_xft= true,
xftalpha= .1,
update_interval= 1,
total_run_times= 0,
background= true,
own_window= true,
own_window_type= 'desktop',
own_window_transparent= false,
own_window_hints= 'undecorated,below,sticky,skip_taskbar,skip_pager',
own_window_colour= 'FF5217',
own_window_argb_visual= true,
own_window_argb_value= 256,
double_buffer= true,
minimum_width= 300,
maximum_width= 350,
minimum_height= 742,
draw_shades= false,
draw_outline= false,
draw_borders= false,
draw_graph_borders= false,
default_color= '80838D',
default_shade_color= '333333',
default_outline_color= 'black',
-- color1 = 'FFFFFF',
-- color3 = '348CC9',
color1 = 'FFFFFF',
color3 = 'FFFFFF',
-- Signal color skeem
-- color1 = 'FF1717',
-- color2 = 'FF1717',
-- color3 = 'FF1717',
-- Syntwave color skeem
-- color1 = '00FFDD',
-- color3 = 'F600FF',
alignment= 'top_right',
gap_x= 96,
gap_y= 0,
no_buffers= true,
text_buffer_size = 2048,
uppercase= false,
cpu_avg_samples= 4,
net_avg_samples = 2,
override_utf8_locale= true,
font= 'Noto Sans:style=Mono:size=9'
}
conky.text = [[
${color1}
${voffset 70}
${alignc}${font Fira Sans:style=Light:pixelsize=120}${time %I:%M}${font}
${alignc}${font Fira Sans:style=Light:pixelsize=64}${time %S}${font}
${voffset 5}
${alignc}${font Fira Sans:style=Light:pixelsize=14}${time %A %d %B %Y}${font}
${voffset 20}
local_ip ${alignr}${addrs wlp2s0}
${color3}${cpugraph cpu1 60,171 color3 color1 -t} ${cpugraph cpu2 60,171 color3 color1 -t }
${memgraph color3 color1 -t 100,299 }
${hr $color2}
${color3}${downspeedgraph wlp2s0 25,349 color3 color1 -t}
${color1}download ${alignr}${downspeedf wlp2s0}k/s (${totaldown wlp2s0})
${hr $color1}
upload ${alignr}${upspeedf wlp2s0}k/s (${totalup wlp2s0})
${color3}${upspeedgraph wlp2s0 25,349 color3 color1 -t}]]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment