Hier ist der Code aus meiner .conkyrc Datei, falls den jemand mal ausprobieren möchte.
-- 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
conky.config = {
alignment = 'bottom_right',
background = false,
border_width = 1,
cpu_avg_samples = 1,
default_color = 'white',
default_outline_color = 'white',
default_shade_color = 'white',
double_buffer = true,
draw_borders = false,
draw_graph_borders = false,
draw_outline = false,
draw_shades = false,
extra_newline = false,
font = 'DejaVu Sans Mono:size=12',
gap_x = 60,
gap_y = 60,
minimum_height = 5,
minimum_width = 5,
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_class = 'Conky',
own_window_type = 'desktop',
own_window_transparent = true,
show_graph_range = false,
show_graph_scale = false,
stippled_borders = 0,
update_interval = 1.0,
uppercase = false,
use_spacer = 'none',
use_xft = true,
}
conky.text = [[
${color #559900} ${font FreeMono:size=20}Linux Mint 22.3 Zena${font}
${color #559900} ${font FreeMono:size=16} with Cinnamon-Desktop${font}
${color #559900} $hr
${color lightblue}$nodename
$sysname$kernel on $machine
#${color gray} $stippled_hr
${color #fffc9c}eingeschaltet seit : $color ${uptime %A %d %B %Y}
${color #fffc9c}Prozesse (aktiv) : $color $processes ($running_processes)
#${color gray} $stippled_hr
${color #e47c16}SSD : ${color #FFFFFF}${fs_free /}/${fs_size /} - ca. ${fs_free_perc /}% freier Speicherplatz
${color #e47c16}RAM : $color $mem/$memmax - ca. $memperc% belegt
${color #e47c16}CPU : $color $cpu% in Verwendung
#${color gray} $stippled_hr
${color #d90070}IP lokal : $color ${addr wlp6s0} ${offset 10}
${color #d90070}IPv4 global : $color ${execi 7200 wget http://v4.ipv6-test.com/api/myip.php -q -O -}
${color #d90070}IPv6 global : $color ${execi 7200 wget http://v6.ipv6-test.com/api/myip.php -q -O -}
#${color gray} $stippled_hr
${offset 15}${color #119922}Download : ${color green}${downspeedgraph wlp6s0 10,45 green} $color ${downspeed wlp6s0}/s
${offset 15}${color #990802}Upload : ${color red}${upspeedgraph wlp6s0 10,45 red} $color $color ${upspeed wlp6s0}/s
#${color gray} $stippled_hr
]]
Was Conky ist, wird wohl den meisten Linuxern bekannt sein. Jedenfalls hatte ich letztens Probleme beim Start, nach einer Änderung, und stellte fest, das meine Konfigurationsdatei noch auf dem alten Stand war.

