2021-03-05 00:01:01 +00:00
|
|
|
-- Conky, a system monitor https://github.com/brndnmtthws/conky
|
|
|
|
--
|
|
|
|
-- This configuration file is Lua code. You can write code in here, and it will
|
|
|
|
-- execute when Conky loads. You can use it to generate your own advanced
|
|
|
|
-- configurations.
|
|
|
|
--
|
|
|
|
-- Try this (remove the `--`):
|
|
|
|
--
|
|
|
|
-- print("Loading Conky config")
|
|
|
|
--
|
|
|
|
-- For more on Lua, see:
|
|
|
|
-- https://www.lua.org/pil/contents.html
|
2010-09-12 13:31:18 +00:00
|
|
|
|
|
|
|
conky.config = {
|
|
|
|
alignment = 'top_left',
|
|
|
|
background = false,
|
|
|
|
border_width = 1,
|
|
|
|
cpu_avg_samples = 2,
|
2018-12-09 22:35:45 +00:00
|
|
|
default_color = 'white',
|
2010-09-12 13:31:18 +00:00
|
|
|
default_outline_color = 'white',
|
|
|
|
default_shade_color = 'white',
|
2019-02-25 16:51:43 +00:00
|
|
|
double_buffer = true,
|
2010-09-12 13:31:18 +00:00
|
|
|
draw_borders = false,
|
|
|
|
draw_graph_borders = true,
|
|
|
|
draw_outline = false,
|
|
|
|
draw_shades = false,
|
2019-02-25 16:51:43 +00:00
|
|
|
extra_newline = false,
|
2010-09-12 13:31:18 +00:00
|
|
|
font = 'DejaVu Sans Mono:size=12',
|
2019-02-25 16:51:43 +00:00
|
|
|
gap_x = 60,
|
2010-09-12 13:31:18 +00:00
|
|
|
gap_y = 60,
|
|
|
|
minimum_height = 5,
|
2018-12-09 22:35:45 +00:00
|
|
|
minimum_width = 5,
|
2010-09-12 13:31:18 +00:00
|
|
|
net_avg_samples = 2,
|
|
|
|
no_buffers = true,
|
|
|
|
out_to_console = false,
|
2018-12-09 22:35:45 +00:00
|
|
|
out_to_ncurses = false,
|
2010-09-12 13:31:18 +00:00
|
|
|
out_to_stderr = false,
|
2018-12-09 22:35:45 +00:00
|
|
|
out_to_x = true,
|
2010-09-12 13:31:18 +00:00
|
|
|
own_window = true,
|
|
|
|
own_window_class = 'Conky',
|
|
|
|
own_window_type = 'desktop',
|
2019-02-25 16:51:43 +00:00
|
|
|
show_graph_range = false,
|
|
|
|
show_graph_scale = false,
|
2010-09-12 13:31:18 +00:00
|
|
|
stippled_borders = 0,
|
|
|
|
update_interval = 1.0,
|
|
|
|
uppercase = false,
|
|
|
|
use_spacer = 'none',
|
2019-02-25 16:51:43 +00:00
|
|
|
use_xft = true,
|
2010-09-12 13:31:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
conky.text = [[
|
2019-02-25 16:51:43 +00:00
|
|
|
${color grey}Info:$color ${scroll 32 Conky $conky_version - $sysname $nodename $kernel $machine}
|
2007-10-23 21:52:11 +00:00
|
|
|
$hr
|
|
|
|
${color grey}Uptime:$color $uptime
|
|
|
|
${color grey}Frequency (in MHz):$color $freq
|
|
|
|
${color grey}Frequency (in GHz):$color $freq_g
|
|
|
|
${color grey}RAM Usage:$color $mem/$memmax - $memperc% ${membar 4}
|
|
|
|
${color grey}Swap Usage:$color $swap/$swapmax - $swapperc% ${swapbar 4}
|
|
|
|
${color grey}CPU Usage:$color $cpu% ${cpubar 4}
|
|
|
|
${color grey}Processes:$color $processes ${color grey}Running:$color $running_processes
|
|
|
|
$hr
|
|
|
|
${color grey}File systems:
|
2009-04-01 16:04:20 +00:00
|
|
|
/ $color${fs_used /}/${fs_size /} ${fs_bar 6 /}
|
2007-10-23 21:52:11 +00:00
|
|
|
${color grey}Networking:
|
2018-08-07 15:54:01 +00:00
|
|
|
Up:$color ${upspeed} ${color grey} - Down:$color ${downspeed}
|
2007-10-23 21:52:11 +00:00
|
|
|
$hr
|
2019-10-19 15:35:21 +00:00
|
|
|
${color grey}Name PID CPU% MEM%
|
2007-10-23 21:52:11 +00:00
|
|
|
${color lightgrey} ${top name 1} ${top pid 1} ${top cpu 1} ${top mem 1}
|
|
|
|
${color lightgrey} ${top name 2} ${top pid 2} ${top cpu 2} ${top mem 2}
|
|
|
|
${color lightgrey} ${top name 3} ${top pid 3} ${top cpu 3} ${top mem 3}
|
|
|
|
${color lightgrey} ${top name 4} ${top pid 4} ${top cpu 4} ${top mem 4}
|
2010-09-12 13:31:18 +00:00
|
|
|
]]
|