Created
March 14, 2020 22:25
-
-
Save wolfiestyle/0feee920694f8343a372f52413aadde4 to your computer and use it in GitHub Desktop.
wolfie's conky config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- wolfie's conky config. inspired by gkrellm | |
conky.config = { | |
alignment = 'top_left', | |
xinerama_head = 1, | |
gap_x = 0, | |
gap_y = 0, | |
background = false, | |
border_width = 1, | |
draw_borders = false, | |
draw_graph_borders = false, | |
draw_outline = false, | |
draw_shades = false, | |
use_xft = true, | |
font = 'Monospace:size=8', | |
minimum_height = 5, | |
minimum_width = 5, | |
maximum_width = 90, | |
if_up_strictness = 'address', | |
no_buffers = true, | |
out_to_console = false, | |
out_to_stderr = false, | |
extra_newline = false, | |
own_window = true, | |
own_window_class = 'Conky', | |
own_window_hints = 'undecorated,sticky,skip_taskbar,skip_pager,below', | |
own_window_argb_visual = true, | |
own_window_argb_value = 159, | |
double_buffer = true, | |
stippled_borders = 0, | |
update_interval = 1, | |
uppercase = false, | |
use_spacer = 'none', | |
show_graph_scale = false, | |
show_graph_range = false, | |
short_units = true, | |
default_graph_width = 80, | |
default_graph_height = 40, | |
default_color = 'white', | |
default_outline_color = 'black', | |
default_shade_color = 'black', | |
color1 = '5462ff', | |
color2 = '3fa5ff', | |
color3 = '2e2e35', | |
} | |
conky.text = [[ | |
${alignc}${time %a} ${color1}${time %e}$color ${time %b} | |
${alignc}${time %l:%M} ${color1}${time %S} | |
$hr | |
${alignc}${color}CPU: $cpu% | |
${cpugraph 3fa5ff 3fa5ff} | |
${color1}TDie${color} ${hwmon 0 temp 1} | |
${color1}Tccd1${color} ${hwmon 0 temp 3} | |
${color1}Freq${color} $freq | |
${color1}Fan${color} ${hwmon 1 fan 1} | |
${color1}$hr${color} | |
${alignc}GPU: ${nvidia gpuutil}% | |
${nvidiagraph gpuutil 3fa5ff 3fa5ff 0} | |
${color1}Temp${color} ${nvidia temp} | |
${color1}GPU clk${color} ${nvidia gpufreq} | |
${color1}Mem clk${color} ${nvidia memfreq} | |
${color1}Mem${color} ${nvidia memused} | |
${color1}Fan${color} ${nvidia fanspeed} | |
${color1}$hr${color} | |
${alignc}ssd root | |
${diskiograph label:root 3fa5ff 3fa5ff} | |
${color1}R${color}${diskio_read label:root} ${color1}W${color}${diskio_write label:root} | |
${color1}$hr${color} | |
${if_up eth0}${alignc}eth0 | |
${downspeedgraph eth0 3fa5ff 3fa5ff} | |
${color1}D${color}${downspeed eth0} ${color1}U${color}${upspeed eth0}${endif} | |
${if_up usb0}${alignc}usb0 | |
${downspeedgraph usb0 3fa5ff 3fa5ff} | |
${color1}D${color}${downspeed usb0} ${color1}U${color}${upspeed usb0}${endif} | |
${color1}$hr${color} | |
${color1}RAM${color} $mem | |
${color2}${membar} | |
${color1}Swap${color} $swap | |
${color2}${swapbar} | |
${alignc}${color}FS usage | |
${color}root ${color2}${fs_bar /} | |
${color}port ${color2}${fs_bar /var/tmp/portage} | |
${color}tmp ${color2}${fs_bar /tmp} | |
${color1}$hr | |
${alignc}Up${color} $uptime_short | |
]] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment