1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
conky.config = {
alignment = 'top_right',
background = true,
draw_borders = false,
draw_graph_borders = true,
border_width = 1,
border_outer_margin = 5,
stippled_borders = 6,
cpu_avg_samples = 2,
default_color = 'white',
default_outline_color = '#555',
default_shade_color = 'black',
draw_outline = false,
draw_shades = true,
use_xft = true,
font = 'FuraCode Nerd Font Mono:size=10',
gap_x = 25,
gap_y = 55,
minimum_height = 5,
minimum_width = 5,
net_avg_samples = 2,
no_buffers = true,
out_to_console = false,
out_to_stderr = false,
extra_newline = false,
own_window_hints = "undecorated,below,sticky,skip_taskbar,skip_pager",
own_window_transparent = false,
own_window_argb_visual = true,
own_window_argb_value = 200,
own_window_colour = '282828',
own_window = true,
own_window_class = 'Conky',
own_window_type = "override",
short_units = true,
update_interval = 1.0,
uppercase = false,
use_spacer = 'left',
pad_percents = 2,
show_graph_scale = false,
show_graph_range = false,
double_buffer = true,
lua_load = '~/.config/conky/scripts/conky_lua_scripts.lua',
color0 = '#e03031',
color2 = '#98971a',
color1 = '#6495ed',
color3 = '#6497b1',
color4 = '#e03031',
color5 = '#22475b',
color6 = '#6497b1',
color7 = '#e03031',
color8 = '#03396c'
}
conky.text = [[
${color4}${alignr}
${color}${alignc}$sysname $kernel on $machine
${color}${alignc}${exec whoami} @ $nodename
${color0}$hr${color}
${alignc}${color1}date ${color}${time %d %B %A}
${color1}uptime${color} $uptime${alignr}${color1}time ${color}${time %k:%M:%S}
${color0}temperatures $stippled_hr
${color1}cpu ${color}${platform coretemp.0/hwmon/hwmon1 temp 1}°C${alignr} ${color1}mobo ${color}${acpitemp}°C
${color0}processors $stippled_hr${color}
${cpubar cpu1 6,45} ${freq_g 1}GHz ${cpu cpu1}% ${alignr}${cpubar cpu2 6,45} ${freq_g 2}GHz${alignr}${cpu cpu2}%
${cpubar cpu3 6,45} ${freq_g 3}GHz ${cpu cpu3}% ${alignr}${cpubar cpu4 6,45} ${freq_g 4}GHz${alignr}${cpu cpu4}%
${color0}load $stippled_hr${color}
${color1}cpu${color} ${cpubar cpu0 6, 120}${alignr}${freq_g}GHz ${cpu cpu0}%
${color1}ram${color} ${membar 6, 120}${alignr}$mem/$memmax $memperc%
${color1}swp${color} ${swapbar 6,120}${alignr}$swap/$swapmax $swapperc%
${color0}filesystem $stippled_hr${color}
${color1}~ ${color}${FS_BAR 6, 130 /home}${alignr}${fs_used /home} /${fs_size /home} ${color}
${color0}networking $stippled_hr${color}
${color1}down${color} ${downspeed enp1s0}/s${alignr}${color1}up${color} ${upspeed enp1s0}/s
${color}${alignc}${downspeedgraph enp1s0 32,150 2980b9 e74c3c -t}${color} ${upspeedgraph enp1s0 32,150 2980b9 e74c3c -t}
${color1}address${color} ${addr enp1s0}${alignr}updates ${execi 3600 checkupdates | wc -l}
${color1}inbound${color} ${tcp_portmon 1 32767 count}${color1} outbound${color} ${tcp_portmon 32768 61000 count}${alignr}${color1}all${color} ${tcp_portmon 1 65535 count}
${color0}processes $stippled_hr${color}
${color1}${alignc}name pid cpu% mem%
${color}${alignc} ${top name 1} ${top pid 1} ${top cpu 1} ${top mem 1}
${color}${alignc} ${top name 2} ${top pid 2} ${top cpu 2} ${top mem 2}
${color}${alignc} ${top name 4} ${top pid 4} ${top cpu 4} ${top mem 4}
${color0}forecast $stippled_hr${color}
${voffset 05}${texeci 1800 curl -s wttr.in/ank | sed -n '3,7{s/\d27\[[0-9;]*m//g;s/^..//;s/ *$//;p}'}
${color0}calendar $stippled_hr${color}
${voffset 05}${execp TODAY=`date +%_d`; cal | tail -n+2 | sed -e '1 s:.*:\${color3}&\${color6}:' -e '1 s:'"$(date +%a |cut -c 1-2)"':\${color4}&\${color5}:' -e '0,/'"$TODAY"'/{s/'"$TODAY"'/\${color7}'"$TODAY"'\${color8}/}' | sed s/^/'${alignc}'/}
${color0}latest xkcd $stippled_hr${color}
${voffset 05}${alignc}${font Lato Medium:size=11}${rss https://xkcd.com/rss.xml 10 item_title 0}$font
${voffset 05}${color0}situation $stippled_hr${color}
${voffset 05}${offset 10}Checking${alignr}${offset -10}${color2}${texecpi 5 ~/.config/conky/scripts/ledger_parser.pl Checking}${color}
${voffset 05}${offset 10}Liabilities${alignr}${offset -10}${color4}${texecpi 5 ~/.config/conky/scripts/ledger_parser.pl Liabilities}${color}
]]
|