From c506bd42ffc83a309535509f5692afac92083a67 Mon Sep 17 00:00:00 2001 From: Joe Date: Mon, 9 Jan 2023 15:55:03 +0100 Subject: openbox --- .config/conkyrc | 88 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 88 insertions(+) create mode 100755 .config/conkyrc (limited to '.config/conkyrc') diff --git a/.config/conkyrc b/.config/conkyrc new file mode 100755 index 0000000..2caf268 --- /dev/null +++ b/.config/conkyrc @@ -0,0 +1,88 @@ +conky.config = { + alignment = 'left', + background = false, + own_window = true, + own_window_class = 'Desktop', + own_window_transparent = true, + own_window_type = 'desktop', + own_window_argb_visual = true, + own_window_argb_value = 255, + double_buffer = true, + use_spacer = 'none', + use_xft = true, + xftalpha = 1, + font = 'hack nerd font:regular:size=12', + update_interval = 1.5, + uppercase = false, + override_utf8_locale = true, + stippled_borders = 1, + border_width = 1, + draw_borders = false, + draw_graph_borders = true, + draw_outline = false, + draw_shades = false, + show_graph_scale = false, + show_graph_range = false, + alignment = 'top_right', + minimum_width = 365, + minimum_height = 1030, + maximum_width = 365, + gap_x = 05, + gap_y = 350, + net_avg_samples = 2, + cpu_avg_samples = 4, + short_units = true, + pad_percents = 2, + text_buffer_size = 8192, + out_to_console = false, + out_to_stderr = false, + extra_newline = false, + default_color = 'red', +} + +conky.text = [[ +${color grey}${alignc}${time %A %e %B %Y : %Hh%M} +${hr} +${color grey}Fête du jour: ${font Hack:bold:size=12}${color white}${texeci 1000 wget -O - -q http://fetedujour.fr/ --user-agent="Mozilla/5.0 (Windows NT 5.1; rv:31.0) Gecko/20100101 Firefox/31.0" | grep "Fête du jour" | head -1 | cut -d">" -f4 | cut -d"<" -f1 | sed -e 's/Nativité/jozan/' }${font} +${hr} +${color grey}Uptime : ${color white}${uptime} +${hr} +${color grey}CPU: ${font Hack:bold:size=12}${color white} ${freq_g} GHz ${color white}${if_match ${cpu}>80}${color red}${else}${endif}${cpu}% ${cpubar 6} +${offset 4}${cpugraph bfbfbf c0c0c0}${color white} +${color grey}1:${color white} ${if_match ${cpu cpu0}>80}${color red}${else}${endif}${cpu cpu0}% ${cpubar cpu0}${color white} +${color grey}2:${color white} ${if_match ${cpu cpu1}>80}${color red}${else}${endif}${cpu cpu1}% ${cpubar cpu1}${color white} +${color grey}3:${color white} ${if_match ${cpu cpu2}>80}${color red}${else}${endif}${cpu cpu2}% ${cpubar cpu2}${color white} +${color grey}4:${color white} ${if_match ${cpu cpu3}>80}${color red}${else}${endif}${cpu cpu3}% ${cpubar cpu3}${color white} +${color grey}5:${color white} ${if_match ${cpu cpu4}>80}${color red}${else}${endif}${cpu cpu4}% ${cpubar cpu4}${color white} +${color grey}6:${color white} ${if_match ${cpu cpu5}>80}${color red}${else}${endif}${cpu cpu5}% ${cpubar cpu5}${color white} +${color grey}7:${color white} ${if_match ${cpu cpu6}>80}${color red}${else}${endif}${cpu cpu6}% ${cpubar cpu6}${color white} +${color grey}8:${color white} ${if_match ${cpu cpu7}>80}${color red}${else}${endif}${cpu cpu7}% ${cpubar cpu7}${color white}${font} +${hr} +${color grey}RAM: ${font Hack:bold:size=12}${color white}${mem} / ${memmax} ${color white}${if_match ${memperc}>80}${color red}${else}${endif}${memperc}% ${membar 4}${font} +${offset 4}${memgraph bfbfbf c0c0c0}${color white} +${color grey}SWAP: ${font Hack:bold:size=12}${color white}${swap} / ${swapmax} ${color white}${if_match ${swapperc}>80}${color red}${else}${endif}${swapperc}% ${swapbar 4}${font} +${hr} +${color grey}SSD: ${font Hack:bold:size=12}${color white}${if_match ${fs_free_perc /}<20}${color red}${else}${endif}${fs_free_perc /}% ${fs_bar 6 /}${font} +${hr} +${color grey}Process: ${color grey}${alignr} PID CPU MEM +${font Hack:bold:size=12}${color white} ${top name 1} ${alignr}${top pid 1} ${top cpu 1} ${top mem 1} +${color grey} ${top name 2} ${alignr}${top pid 2} ${top cpu 2} ${top mem 2} +${color white} ${top name 3} ${alignr}${top pid 3} ${top cpu 3} ${top mem 3} +${color grey} ${top name 4} ${alignr}${top pid 4} ${top cpu 4} ${top mem 4}${font} +${color grey}--------- +${color grey}Processes: ${color white}${processes} +${hr} +${color grey}IP LAN : ${font Hack:bold:size=12}${color white}${addr re0}${font} +${color grey}--------- +${color grey}IP VPN : ${font Hack:bold:size=12}${color white}${addr proton0}${font} +${hr} +${color grey}Down: ${color white}${downspeed re0} - ${font}${color grey}Up: ${font Hack:bold:size=12}${upspeed re0}${font} +${color grey}Down: ${color white}${downspeedgraph re0 bfbfbf c0c0c0 125829120} +${color grey}Up: ${color white}${upspeedgraph re0 bfbfbf c0c0c0 125829120} +${hr} +${color grey}Dns: +${font Hack:bold:size=12}${color white}${exec cat /etc/resolv.conf}${font} +${hr} +${color grey}IP Public:${color white}${alignc}${font Hack:bold:size=12}${exec curl -s https://ifconfig.me}${font}${color grey} +${hr} +]] -- cgit v1.2.3 From 1a7f1e3cc311d9fabdda7ef388def4a85c0ae43e Mon Sep 17 00:00:00 2001 From: Joe Date: Mon, 9 Jan 2023 15:58:53 +0100 Subject: up --- .config/conkyrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.config/conkyrc') diff --git a/.config/conkyrc b/.config/conkyrc index 2caf268..bf6671a 100755 --- a/.config/conkyrc +++ b/.config/conkyrc @@ -27,7 +27,7 @@ conky.config = { minimum_width = 365, minimum_height = 1030, maximum_width = 365, - gap_x = 05, + gap_x = 2565, gap_y = 350, net_avg_samples = 2, cpu_avg_samples = 4, @@ -76,7 +76,7 @@ ${color grey}IP LAN : ${font Hack:bold:size=12}${color white}${addr re0}${font} ${color grey}--------- ${color grey}IP VPN : ${font Hack:bold:size=12}${color white}${addr proton0}${font} ${hr} -${color grey}Down: ${color white}${downspeed re0} - ${font}${color grey}Up: ${font Hack:bold:size=12}${upspeed re0}${font} +${color grey}Down: ${color white}${font Hack:bold:size=12}${downspeed re0} ${font}${color grey}- Up: ${color white}${font Hack:bold:size=12}${upspeed re0}${font} ${color grey}Down: ${color white}${downspeedgraph re0 bfbfbf c0c0c0 125829120} ${color grey}Up: ${color white}${upspeedgraph re0 bfbfbf c0c0c0 125829120} ${hr} -- cgit v1.2.3 From fdaf08d31cd5bf5851fb4c1770afa226afb3bb2c Mon Sep 17 00:00:00 2001 From: Joe Date: Tue, 10 Jan 2023 14:57:14 +0100 Subject: update --- .config/conkyrc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to '.config/conkyrc') diff --git a/.config/conkyrc b/.config/conkyrc index bf6671a..bc67a05 100755 --- a/.config/conkyrc +++ b/.config/conkyrc @@ -45,7 +45,10 @@ ${color grey}${alignc}${time %A %e %B %Y : %Hh%M} ${hr} ${color grey}Fête du jour: ${font Hack:bold:size=12}${color white}${texeci 1000 wget -O - -q http://fetedujour.fr/ --user-agent="Mozilla/5.0 (Windows NT 5.1; rv:31.0) Gecko/20100101 Firefox/31.0" | grep "Fête du jour" | head -1 | cut -d">" -f4 | cut -d"<" -f1 | sed -e 's/Nativité/jozan/' }${font} ${hr} -${color grey}Uptime : ${color white}${uptime} +${color grey}Uptime: ${font Hack:bold:size=12}${color white}${uptime}${font} +${hr} +${color grey}Battery: ${color white}${apcupsd_loadbar}${font} +${color grey}Battery: ${color white}${apcupsd_loadgauge}${font} ${hr} ${color grey}CPU: ${font Hack:bold:size=12}${color white} ${freq_g} GHz ${color white}${if_match ${cpu}>80}${color red}${else}${endif}${cpu}% ${cpubar 6} ${offset 4}${cpugraph bfbfbf c0c0c0}${color white} -- cgit v1.2.3 From 436b9c0d56b1f3eeb2ee1bfa47a45aeae85ced53 Mon Sep 17 00:00:00 2001 From: Joe Date: Tue, 10 Jan 2023 16:15:39 +0100 Subject: update --- .config/conkyrc | 3 --- 1 file changed, 3 deletions(-) (limited to '.config/conkyrc') diff --git a/.config/conkyrc b/.config/conkyrc index bc67a05..39f035e 100755 --- a/.config/conkyrc +++ b/.config/conkyrc @@ -47,9 +47,6 @@ ${color grey}Fête du jour: ${font Hack:bold:size=12}${color white}${texeci 1000 ${hr} ${color grey}Uptime: ${font Hack:bold:size=12}${color white}${uptime}${font} ${hr} -${color grey}Battery: ${color white}${apcupsd_loadbar}${font} -${color grey}Battery: ${color white}${apcupsd_loadgauge}${font} -${hr} ${color grey}CPU: ${font Hack:bold:size=12}${color white} ${freq_g} GHz ${color white}${if_match ${cpu}>80}${color red}${else}${endif}${cpu}% ${cpubar 6} ${offset 4}${cpugraph bfbfbf c0c0c0}${color white} ${color grey}1:${color white} ${if_match ${cpu cpu0}>80}${color red}${else}${endif}${cpu cpu0}% ${cpubar cpu0}${color white} -- cgit v1.2.3 From 6456616f9e36d98a70b7fa801d2cb4b4486e82d8 Mon Sep 17 00:00:00 2001 From: Joe Date: Wed, 11 Jan 2023 14:44:17 +0100 Subject: up --- .config/conkyrc | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100755 => 100644 .config/conkyrc (limited to '.config/conkyrc') diff --git a/.config/conkyrc b/.config/conkyrc old mode 100755 new mode 100644 -- cgit v1.2.3 From 029448197669f91b21c15d6d79e8acc88311e19d Mon Sep 17 00:00:00 2001 From: Joe Date: Wed, 11 Jan 2023 15:18:24 +0100 Subject: update --- .config/conkyrc | 2 -- 1 file changed, 2 deletions(-) (limited to '.config/conkyrc') diff --git a/.config/conkyrc b/.config/conkyrc index 39f035e..1ec7ec7 100644 --- a/.config/conkyrc +++ b/.config/conkyrc @@ -43,8 +43,6 @@ conky.config = { conky.text = [[ ${color grey}${alignc}${time %A %e %B %Y : %Hh%M} ${hr} -${color grey}Fête du jour: ${font Hack:bold:size=12}${color white}${texeci 1000 wget -O - -q http://fetedujour.fr/ --user-agent="Mozilla/5.0 (Windows NT 5.1; rv:31.0) Gecko/20100101 Firefox/31.0" | grep "Fête du jour" | head -1 | cut -d">" -f4 | cut -d"<" -f1 | sed -e 's/Nativité/jozan/' }${font} -${hr} ${color grey}Uptime: ${font Hack:bold:size=12}${color white}${uptime}${font} ${hr} ${color grey}CPU: ${font Hack:bold:size=12}${color white} ${freq_g} GHz ${color white}${if_match ${cpu}>80}${color red}${else}${endif}${cpu}% ${cpubar 6} -- cgit v1.2.3 From 8527318b28e5d3e83e0e1b0810ef0de0e23671c2 Mon Sep 17 00:00:00 2001 From: Joe Date: Wed, 11 Jan 2023 16:35:29 +0100 Subject: up --- .config/conkyrc | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) (limited to '.config/conkyrc') diff --git a/.config/conkyrc b/.config/conkyrc index 1ec7ec7..d2ff5df 100644 --- a/.config/conkyrc +++ b/.config/conkyrc @@ -27,8 +27,8 @@ conky.config = { minimum_width = 365, minimum_height = 1030, maximum_width = 365, - gap_x = 2565, - gap_y = 350, + gap_x = 0, + gap_y = 0, net_avg_samples = 2, cpu_avg_samples = 4, short_units = true, @@ -43,8 +43,17 @@ conky.config = { conky.text = [[ ${color grey}${alignc}${time %A %e %B %Y : %Hh%M} ${hr} +${color grey}${alignc}MPD +${font Hack:bold:size=12}${color white}${if_mpd_playing}${mpd_status}: ${mpd_artist} - ${mpd_title} +${hr} +${mpd_elapsed}/${mpd_length} ${mpd_bar}${else}Stopped${endif}${font} +${hr} +${font Hack Nerd Font Mono:bold:size=10}${color white}${alignc}${execpi 1800 curl wttr.in/Lyon?T0 --silent --max-time 3} +${hr} ${color grey}Uptime: ${font Hack:bold:size=12}${color white}${uptime}${font} ${hr} +${color grey}Battery: ${font Hack:bold:size=12}${color white}${if_match ${battery_percent}<15}${color red}${endif}${battery_percent}% ${battery_bar}${font} +${hr} ${color grey}CPU: ${font Hack:bold:size=12}${color white} ${freq_g} GHz ${color white}${if_match ${cpu}>80}${color red}${else}${endif}${cpu}% ${cpubar 6} ${offset 4}${cpugraph bfbfbf c0c0c0}${color white} ${color grey}1:${color white} ${if_match ${cpu cpu0}>80}${color red}${else}${endif}${cpu cpu0}% ${cpubar cpu0}${color white} @@ -78,9 +87,9 @@ ${color grey}Down: ${color white}${font Hack:bold:size=12}${downspeed re0} ${fon ${color grey}Down: ${color white}${downspeedgraph re0 bfbfbf c0c0c0 125829120} ${color grey}Up: ${color white}${upspeedgraph re0 bfbfbf c0c0c0 125829120} ${hr} -${color grey}Dns: -${font Hack:bold:size=12}${color white}${exec cat /etc/resolv.conf}${font} +${color grey}${alignc}DNS +${font Hack:bold:size=12}${color white}${execi 300 cat /etc/resolv.conf}${font} ${hr} -${color grey}IP Public:${color white}${alignc}${font Hack:bold:size=12}${exec curl -s https://ifconfig.me}${font}${color grey} +${color grey}Public IP: ${color white}${font Hack:bold:size=12}${exec curl -s https://ifconfig.me}${font}${color grey} ${hr} ]] -- cgit v1.2.3 From fc59e659114f29ddb3cc63a4cc6fd543fb946c31 Mon Sep 17 00:00:00 2001 From: Joe Date: Thu, 12 Jan 2023 14:45:51 +0100 Subject: up --- .config/conkyrc | 36 ++++++++++++++++++++---------------- 1 file changed, 20 insertions(+), 16 deletions(-) (limited to '.config/conkyrc') diff --git a/.config/conkyrc b/.config/conkyrc index d2ff5df..74b5413 100644 --- a/.config/conkyrc +++ b/.config/conkyrc @@ -11,7 +11,10 @@ conky.config = { use_spacer = 'none', use_xft = true, xftalpha = 1, - font = 'hack nerd font:regular:size=12', + font = 'Cantarell Mono:size=14', + font1 = 'Hack Nerd Font Mono:bold:size=11', + font2 = 'Hack Nerd Font Mono:bold:size=10', + format_human_readable = true, update_interval = 1.5, uppercase = false, override_utf8_locale = true, @@ -44,17 +47,18 @@ conky.text = [[ ${color grey}${alignc}${time %A %e %B %Y : %Hh%M} ${hr} ${color grey}${alignc}MPD -${font Hack:bold:size=12}${color white}${if_mpd_playing}${mpd_status}: ${mpd_artist} - ${mpd_title} -${hr} +${font1}${color white}${if_mpd_playing}${mpd_status}: ${mpd_artist} - ${mpd_title} ${mpd_elapsed}/${mpd_length} ${mpd_bar}${else}Stopped${endif}${font} ${hr} -${font Hack Nerd Font Mono:bold:size=10}${color white}${alignc}${execpi 1800 curl wttr.in/Lyon?T0 --silent --max-time 3} +${font font2}${color white}${alignc}${execpi 1800 curl wttr.in/Lyon?T0 --silent --max-time 3}${font} +${hr} +${color grey}Mails: ${font1}${color white}${execi 300 cat /tmp/newmailcount}${font} ${hr} -${color grey}Uptime: ${font Hack:bold:size=12}${color white}${uptime}${font} +${color grey}Uptime: ${font1}${color white}${uptime}${font} ${hr} -${color grey}Battery: ${font Hack:bold:size=12}${color white}${if_match ${battery_percent}<15}${color red}${endif}${battery_percent}% ${battery_bar}${font} +${color grey}Battery: ${font1}${color white}${if_match ${battery_percent}<15}${color red}${endif}${battery_percent}% ${battery_bar}${font} ${hr} -${color grey}CPU: ${font Hack:bold:size=12}${color white} ${freq_g} GHz ${color white}${if_match ${cpu}>80}${color red}${else}${endif}${cpu}% ${cpubar 6} +${color grey}CPU: ${font1}${color white} ${freq_g} GHz ${color white}${if_match ${cpu}>80}${color red}${else}${endif}${cpu}% ${cpubar 6} ${offset 4}${cpugraph bfbfbf c0c0c0}${color white} ${color grey}1:${color white} ${if_match ${cpu cpu0}>80}${color red}${else}${endif}${cpu cpu0}% ${cpubar cpu0}${color white} ${color grey}2:${color white} ${if_match ${cpu cpu1}>80}${color red}${else}${endif}${cpu cpu1}% ${cpubar cpu1}${color white} @@ -65,31 +69,31 @@ ${color grey}6:${color white} ${if_match ${cpu cpu5}>80}${color red}${else}${end ${color grey}7:${color white} ${if_match ${cpu cpu6}>80}${color red}${else}${endif}${cpu cpu6}% ${cpubar cpu6}${color white} ${color grey}8:${color white} ${if_match ${cpu cpu7}>80}${color red}${else}${endif}${cpu cpu7}% ${cpubar cpu7}${color white}${font} ${hr} -${color grey}RAM: ${font Hack:bold:size=12}${color white}${mem} / ${memmax} ${color white}${if_match ${memperc}>80}${color red}${else}${endif}${memperc}% ${membar 4}${font} +${color grey}RAM: ${font1}${color white}${mem} / ${memmax} ${color white}${if_match ${memperc}>80}${color red}${else}${endif}${memperc}% ${membar 4}${font} ${offset 4}${memgraph bfbfbf c0c0c0}${color white} -${color grey}SWAP: ${font Hack:bold:size=12}${color white}${swap} / ${swapmax} ${color white}${if_match ${swapperc}>80}${color red}${else}${endif}${swapperc}% ${swapbar 4}${font} +${color grey}SWAP: ${font1}${color white}${swap} / ${swapmax} ${color white}${if_match ${swapperc}>80}${color red}${else}${endif}${swapperc}% ${swapbar 4}${font} ${hr} -${color grey}SSD: ${font Hack:bold:size=12}${color white}${if_match ${fs_free_perc /}<20}${color red}${else}${endif}${fs_free_perc /}% ${fs_bar 6 /}${font} +${color grey}SSD: ${font1}${color white}${if_match ${fs_free_perc /}<20}${color red}${else}${endif}${fs_free_perc /}% ${fs_bar 6 /}${font} ${hr} ${color grey}Process: ${color grey}${alignr} PID CPU MEM -${font Hack:bold:size=12}${color white} ${top name 1} ${alignr}${top pid 1} ${top cpu 1} ${top mem 1} +${font1}${color white} ${top name 1} ${alignr}${top pid 1} ${top cpu 1} ${top mem 1} ${color grey} ${top name 2} ${alignr}${top pid 2} ${top cpu 2} ${top mem 2} ${color white} ${top name 3} ${alignr}${top pid 3} ${top cpu 3} ${top mem 3} ${color grey} ${top name 4} ${alignr}${top pid 4} ${top cpu 4} ${top mem 4}${font} ${color grey}--------- ${color grey}Processes: ${color white}${processes} ${hr} -${color grey}IP LAN : ${font Hack:bold:size=12}${color white}${addr re0}${font} +${color grey}IP LAN : ${font1}${color white}${addr re0}${font} ${color grey}--------- -${color grey}IP VPN : ${font Hack:bold:size=12}${color white}${addr proton0}${font} +${color grey}IP VPN : ${font1}${color white}${addr proton0}${font} ${hr} -${color grey}Down: ${color white}${font Hack:bold:size=12}${downspeed re0} ${font}${color grey}- Up: ${color white}${font Hack:bold:size=12}${upspeed re0}${font} +${color grey}Down: ${color white}${font1}${downspeed re0} ${font}${color grey}- Up: ${color white}${font1}${upspeed re0}${font} ${color grey}Down: ${color white}${downspeedgraph re0 bfbfbf c0c0c0 125829120} ${color grey}Up: ${color white}${upspeedgraph re0 bfbfbf c0c0c0 125829120} ${hr} ${color grey}${alignc}DNS -${font Hack:bold:size=12}${color white}${execi 300 cat /etc/resolv.conf}${font} +${font1}${color white}${execi 300 cat /etc/resolv.conf}${font} ${hr} -${color grey}Public IP: ${color white}${font Hack:bold:size=12}${exec curl -s https://ifconfig.me}${font}${color grey} +${color grey}Public IP: ${color white}${font1}${exec curl -s https://ifconfig.me}${font}${color grey} ${hr} ]] -- cgit v1.2.3 From 6148decbe258d172a5da7003c0be4e5cf711c6b8 Mon Sep 17 00:00:00 2001 From: Joe Date: Thu, 12 Jan 2023 15:03:41 +0100 Subject: up --- .config/conkyrc | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) (limited to '.config/conkyrc') diff --git a/.config/conkyrc b/.config/conkyrc index 74b5413..67cae7d 100644 --- a/.config/conkyrc +++ b/.config/conkyrc @@ -50,9 +50,12 @@ ${color grey}${alignc}MPD ${font1}${color white}${if_mpd_playing}${mpd_status}: ${mpd_artist} - ${mpd_title} ${mpd_elapsed}/${mpd_length} ${mpd_bar}${else}Stopped${endif}${font} ${hr} -${font font2}${color white}${alignc}${execpi 1800 curl wttr.in/Lyon?T0 --silent --max-time 3}${font} +${font2}${color white}${alignc}${execi 1800 curl wttr.in/Lyon?T0 --silent --max-time 3}${font} ${hr} -${color grey}Mails: ${font1}${color white}${execi 300 cat /tmp/newmailcount}${font} +${color grey}${alignc}New mails +${color grey}GMail BR: ${font1}${color white}${new_mails /var/mail/jozan/gmail_br/INBOX}${font} +${color grey}GMail OON: ${font1}${color white}${new_mails /var/mail/jozan/gmail_oon/INBOX}${font} +${color grey}GMail TOS: ${font1}${color white}${new_mails /var/mail/jozan/gmail_tos/INBOX}${font} ${hr} ${color grey}Uptime: ${font1}${color white}${uptime}${font} ${hr} @@ -83,9 +86,12 @@ ${color grey} ${top name 4} ${alignr}${top pid 4} ${top cpu 4} ${top mem ${color grey}--------- ${color grey}Processes: ${color white}${processes} ${hr} -${color grey}IP LAN : ${font1}${color white}${addr re0}${font} +${gw_ip} +${color grey}LAN IP: ${font1}${color white}${addr re0}${font} ${color grey}--------- -${color grey}IP VPN : ${font1}${color white}${addr proton0}${font} +${color grey}VPN IP: ${font1}${color white}${addr proton0}${font} +${color grey}--------- +${color grey}Public IP: ${color white}${font1}${execi 300 curl -s https://ifconfig.me}${font}${color grey} ${hr} ${color grey}Down: ${color white}${font1}${downspeed re0} ${font}${color grey}- Up: ${color white}${font1}${upspeed re0}${font} ${color grey}Down: ${color white}${downspeedgraph re0 bfbfbf c0c0c0 125829120} @@ -94,6 +100,4 @@ ${hr} ${color grey}${alignc}DNS ${font1}${color white}${execi 300 cat /etc/resolv.conf}${font} ${hr} -${color grey}Public IP: ${color white}${font1}${exec curl -s https://ifconfig.me}${font}${color grey} -${hr} ]] -- cgit v1.2.3 From 7e436a10da55ae1dba348e09e89bb2091c9a36fe Mon Sep 17 00:00:00 2001 From: Joe Date: Thu, 12 Jan 2023 15:06:44 +0100 Subject: up --- .config/conkyrc | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to '.config/conkyrc') diff --git a/.config/conkyrc b/.config/conkyrc index 67cae7d..b77d62c 100644 --- a/.config/conkyrc +++ b/.config/conkyrc @@ -53,9 +53,9 @@ ${hr} ${font2}${color white}${alignc}${execi 1800 curl wttr.in/Lyon?T0 --silent --max-time 3}${font} ${hr} ${color grey}${alignc}New mails -${color grey}GMail BR: ${font1}${color white}${new_mails /var/mail/jozan/gmail_br/INBOX}${font} -${color grey}GMail OON: ${font1}${color white}${new_mails /var/mail/jozan/gmail_oon/INBOX}${font} -${color grey}GMail TOS: ${font1}${color white}${new_mails /var/mail/jozan/gmail_tos/INBOX}${font} +${if_match ${new_mails /var/mail/jozan/gmail_br/INBOX}>0}${color grey}GMail BR: ${font1}${color white}${new_mails /var/mail/jozan/gmail_br/INBOX}${font}${endif} +${if_match ${new_mails /var/mail/jozan/gmail_br/INBOX}>0}${color grey}${color grey}GMail OON: ${font1}${color white}${new_mails /var/mail/jozan/gmail_oon/INBOX}${font}${endif} +${if_match ${new_mails /var/mail/jozan/gmail_br/INBOX}>0}${color grey}${color grey}GMail TOS: ${font1}${color white}${new_mails /var/mail/jozan/gmail_tos/INBOX}${font}${endif} ${hr} ${color grey}Uptime: ${font1}${color white}${uptime}${font} ${hr} @@ -86,7 +86,6 @@ ${color grey} ${top name 4} ${alignr}${top pid 4} ${top cpu 4} ${top mem ${color grey}--------- ${color grey}Processes: ${color white}${processes} ${hr} -${gw_ip} ${color grey}LAN IP: ${font1}${color white}${addr re0}${font} ${color grey}--------- ${color grey}VPN IP: ${font1}${color white}${addr proton0}${font} -- cgit v1.2.3 From ae53382344dd11ae55381ea0f888defbe67e6e61 Mon Sep 17 00:00:00 2001 From: Joe Date: Thu, 12 Jan 2023 15:36:36 +0100 Subject: up --- .config/conkyrc | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) (limited to '.config/conkyrc') diff --git a/.config/conkyrc b/.config/conkyrc index b77d62c..a5da4d7 100644 --- a/.config/conkyrc +++ b/.config/conkyrc @@ -14,6 +14,8 @@ conky.config = { font = 'Cantarell Mono:size=14', font1 = 'Hack Nerd Font Mono:bold:size=11', font2 = 'Hack Nerd Font Mono:bold:size=10', + template0 = '\\n', + if_up_strictness = address, format_human_readable = true, update_interval = 1.5, uppercase = false, @@ -52,11 +54,10 @@ ${mpd_elapsed}/${mpd_length} ${mpd_bar}${else}Stopped${endif}${font} ${hr} ${font2}${color white}${alignc}${execi 1800 curl wttr.in/Lyon?T0 --silent --max-time 3}${font} ${hr} -${color grey}${alignc}New mails -${if_match ${new_mails /var/mail/jozan/gmail_br/INBOX}>0}${color grey}GMail BR: ${font1}${color white}${new_mails /var/mail/jozan/gmail_br/INBOX}${font}${endif} -${if_match ${new_mails /var/mail/jozan/gmail_br/INBOX}>0}${color grey}${color grey}GMail OON: ${font1}${color white}${new_mails /var/mail/jozan/gmail_oon/INBOX}${font}${endif} -${if_match ${new_mails /var/mail/jozan/gmail_br/INBOX}>0}${color grey}${color grey}GMail TOS: ${font1}${color white}${new_mails /var/mail/jozan/gmail_tos/INBOX}${font}${endif} -${hr} +${color grey}${alignc}New mails${template0}\ +${if_match ${new_mails /var/mail/jozan/gmail_br/INBOX}>0}${color grey}GMail BR: ${font1}${color white}${new_mails /var/mail/jozan/gmail_br/INBOX}${font}${template0}${endif}\ +${if_match ${new_mails /var/mail/jozan/gmail_oon/INBOX}>0}${color grey}${color grey}GMail OON: ${font1}${color white}${new_mails /var/mail/jozan/gmail_oon/INBOX}${font}${template0}${endif}\ +${if_match ${new_mails /var/mail/jozan/gmail_tos/INBOX}>0}${color grey}${color grey}GMail TOS: ${font1}${color white}${new_mails /var/mail/jozan/gmail_tos/INBOX}${font}${template0}${endif}${hr} ${color grey}Uptime: ${font1}${color white}${uptime}${font} ${hr} ${color grey}Battery: ${font1}${color white}${if_match ${battery_percent}<15}${color red}${endif}${battery_percent}% ${battery_bar}${font} @@ -78,19 +79,19 @@ ${color grey}SWAP: ${font1}${color white}${swap} / ${swapmax} ${color white}${i ${hr} ${color grey}SSD: ${font1}${color white}${if_match ${fs_free_perc /}<20}${color red}${else}${endif}${fs_free_perc /}% ${fs_bar 6 /}${font} ${hr} -${color grey}Process: ${color grey}${alignr} PID CPU MEM -${font1}${color white} ${top name 1} ${alignr}${top pid 1} ${top cpu 1} ${top mem 1} -${color grey} ${top name 2} ${alignr}${top pid 2} ${top cpu 2} ${top mem 2} -${color white} ${top name 3} ${alignr}${top pid 3} ${top cpu 3} ${top mem 3} -${color grey} ${top name 4} ${alignr}${top pid 4} ${top cpu 4} ${top mem 4}${font} +${color grey}Process:${color grey}${alignr}PID CPU MEM +${font1}${color white}${top name 1} ${alignr}${top pid 1} ${top cpu 1} ${top mem 1} +${font1}${color grey}${top name 2} ${alignr}${top pid 2} ${top cpu 2} ${top mem 2} +${font1}${color white}${top name 3} ${alignr}${top pid 3} ${top cpu 3} ${top mem 3} +${font1}${color grey}${top name 4} ${alignr}${top pid 4} ${top cpu 4} ${top mem 4}${font} ${color grey}--------- ${color grey}Processes: ${color white}${processes} -${hr} +${hr}${if_up re0} ${color grey}LAN IP: ${font1}${color white}${addr re0}${font} ${color grey}--------- ${color grey}VPN IP: ${font1}${color white}${addr proton0}${font} ${color grey}--------- -${color grey}Public IP: ${color white}${font1}${execi 300 curl -s https://ifconfig.me}${font}${color grey} +${color grey}Public IP: ${color white}${font1}${execi 300 curl -s https://ifconfig.me || echo No Address}${font}${color grey} ${hr} ${color grey}Down: ${color white}${font1}${downspeed re0} ${font}${color grey}- Up: ${color white}${font1}${upspeed re0}${font} ${color grey}Down: ${color white}${downspeedgraph re0 bfbfbf c0c0c0 125829120} @@ -98,5 +99,5 @@ ${color grey}Up: ${color white}${upspeedgraph re0 bfbfbf c0c0c0 125829120} ${hr} ${color grey}${alignc}DNS ${font1}${color white}${execi 300 cat /etc/resolv.conf}${font} -${hr} +${hr}${endif} ]] -- cgit v1.2.3 From 6d7a8802f48cf7b137b2c6ea53d8f8eb7898153e Mon Sep 17 00:00:00 2001 From: Joe Date: Thu, 12 Jan 2023 15:59:15 +0100 Subject: up --- .config/conkyrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.config/conkyrc') diff --git a/.config/conkyrc b/.config/conkyrc index a5da4d7..1746b4b 100644 --- a/.config/conkyrc +++ b/.config/conkyrc @@ -51,9 +51,9 @@ ${hr} ${color grey}${alignc}MPD ${font1}${color white}${if_mpd_playing}${mpd_status}: ${mpd_artist} - ${mpd_title} ${mpd_elapsed}/${mpd_length} ${mpd_bar}${else}Stopped${endif}${font} -${hr} +${hr}${if_up re0} ${font2}${color white}${alignc}${execi 1800 curl wttr.in/Lyon?T0 --silent --max-time 3}${font} -${hr} +${hr}${endif} ${color grey}${alignc}New mails${template0}\ ${if_match ${new_mails /var/mail/jozan/gmail_br/INBOX}>0}${color grey}GMail BR: ${font1}${color white}${new_mails /var/mail/jozan/gmail_br/INBOX}${font}${template0}${endif}\ ${if_match ${new_mails /var/mail/jozan/gmail_oon/INBOX}>0}${color grey}${color grey}GMail OON: ${font1}${color white}${new_mails /var/mail/jozan/gmail_oon/INBOX}${font}${template0}${endif}\ -- cgit v1.2.3 From 757e1bdb320905ac134eaa4c40e6de7adb7bbbcd Mon Sep 17 00:00:00 2001 From: Joe Date: Thu, 12 Jan 2023 16:10:07 +0100 Subject: up --- .config/conkyrc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to '.config/conkyrc') diff --git a/.config/conkyrc b/.config/conkyrc index 1746b4b..e36ff3a 100644 --- a/.config/conkyrc +++ b/.config/conkyrc @@ -47,11 +47,11 @@ conky.config = { conky.text = [[ ${color grey}${alignc}${time %A %e %B %Y : %Hh%M} -${hr} +${hr}${if_mpd_playing} ${color grey}${alignc}MPD -${font1}${color white}${if_mpd_playing}${mpd_status}: ${mpd_artist} - ${mpd_title} -${mpd_elapsed}/${mpd_length} ${mpd_bar}${else}Stopped${endif}${font} -${hr}${if_up re0} +${font1}${color white}${mpd_status}: ${mpd_artist} - ${mpd_title} +${mpd_elapsed}/${mpd_length} ${mpd_bar}${font} +${hr}${endif}${if_up re0} ${font2}${color white}${alignc}${execi 1800 curl wttr.in/Lyon?T0 --silent --max-time 3}${font} ${hr}${endif} ${color grey}${alignc}New mails${template0}\ -- cgit v1.2.3 From 3e5d88ea7ff249f343ef4b16e01954e2cb778bae Mon Sep 17 00:00:00 2001 From: Joe Date: Thu, 12 Jan 2023 20:54:42 +0100 Subject: up --- .config/conkyrc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to '.config/conkyrc') diff --git a/.config/conkyrc b/.config/conkyrc index e36ff3a..53c2b7b 100644 --- a/.config/conkyrc +++ b/.config/conkyrc @@ -49,8 +49,10 @@ conky.text = [[ ${color grey}${alignc}${time %A %e %B %Y : %Hh%M} ${hr}${if_mpd_playing} ${color grey}${alignc}MPD -${font1}${color white}${mpd_status}: ${mpd_artist} - ${mpd_title} -${mpd_elapsed}/${mpd_length} ${mpd_bar}${font} +${font1}${color white}${goto 140}$mpd_artist +${goto 140}$mpd_album +${goto 140}${mpd_elapsed}/${mpd_length} ${mpd_bar} +${execi 5 ~/.local/bin/conky_cover.sh >/dev/null 2>&1}${image /tmp/conkyCover.png -p 10,30 -n} ${hr}${endif}${if_up re0} ${font2}${color white}${alignc}${execi 1800 curl wttr.in/Lyon?T0 --silent --max-time 3}${font} ${hr}${endif} -- cgit v1.2.3 From 8d7e3d384a0a720f85853e42cf90fcbccb5298fd Mon Sep 17 00:00:00 2001 From: Joe Date: Fri, 13 Jan 2023 16:43:10 +0100 Subject: up --- .config/conkyrc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to '.config/conkyrc') diff --git a/.config/conkyrc b/.config/conkyrc index 53c2b7b..c1e485d 100644 --- a/.config/conkyrc +++ b/.config/conkyrc @@ -49,10 +49,10 @@ conky.text = [[ ${color grey}${alignc}${time %A %e %B %Y : %Hh%M} ${hr}${if_mpd_playing} ${color grey}${alignc}MPD -${font1}${color white}${goto 140}$mpd_artist -${goto 140}$mpd_album +${font1}${color white}${goto 140}${mpd_artist} +${goto 140}${mpd_title} ${goto 140}${mpd_elapsed}/${mpd_length} ${mpd_bar} -${execi 5 ~/.local/bin/conky_cover.sh >/dev/null 2>&1}${image /tmp/conkyCover.png -p 10,30 -n} +${execi 5 ~/.local/bin/conky_cover.sh >/dev/null 2>&1}${image /tmp/conkyCover.png -p 20,40 -n} ${hr}${endif}${if_up re0} ${font2}${color white}${alignc}${execi 1800 curl wttr.in/Lyon?T0 --silent --max-time 3}${font} ${hr}${endif} -- cgit v1.2.3 From 2a7c5b426d7eadc79af452a6e1c082388ef49166 Mon Sep 17 00:00:00 2001 From: Joe Date: Tue, 17 Jan 2023 12:11:40 +0100 Subject: up --- .config/conkyrc | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to '.config/conkyrc') diff --git a/.config/conkyrc b/.config/conkyrc index c1e485d..16b4663 100644 --- a/.config/conkyrc +++ b/.config/conkyrc @@ -33,7 +33,7 @@ conky.config = { minimum_height = 1030, maximum_width = 365, gap_x = 0, - gap_y = 0, + gap_y = 40, net_avg_samples = 2, cpu_avg_samples = 4, short_units = true, @@ -47,6 +47,11 @@ conky.config = { conky.text = [[ ${color grey}${alignc}${time %A %e %B %Y : %Hh%M} +${hr} +${color grey}Terminal: ${font1}${color white}${nodename_short}${font} +${color grey}OS: ${font1}${color white}${sysname}${font} +${color grey}Kernel: ${font1}${color white}${kernel}${font} +${color grey}Uptime: ${font1}${color white}${uptime}${font} ${hr}${if_mpd_playing} ${color grey}${alignc}MPD ${font1}${color white}${goto 140}${mpd_artist} @@ -60,11 +65,9 @@ ${color grey}${alignc}New mails${template0}\ ${if_match ${new_mails /var/mail/jozan/gmail_br/INBOX}>0}${color grey}GMail BR: ${font1}${color white}${new_mails /var/mail/jozan/gmail_br/INBOX}${font}${template0}${endif}\ ${if_match ${new_mails /var/mail/jozan/gmail_oon/INBOX}>0}${color grey}${color grey}GMail OON: ${font1}${color white}${new_mails /var/mail/jozan/gmail_oon/INBOX}${font}${template0}${endif}\ ${if_match ${new_mails /var/mail/jozan/gmail_tos/INBOX}>0}${color grey}${color grey}GMail TOS: ${font1}${color white}${new_mails /var/mail/jozan/gmail_tos/INBOX}${font}${template0}${endif}${hr} -${color grey}Uptime: ${font1}${color white}${uptime}${font} -${hr} ${color grey}Battery: ${font1}${color white}${if_match ${battery_percent}<15}${color red}${endif}${battery_percent}% ${battery_bar}${font} ${hr} -${color grey}CPU: ${font1}${color white} ${freq_g} GHz ${color white}${if_match ${cpu}>80}${color red}${else}${endif}${cpu}% ${cpubar 6} +${color grey}CPU: ${font1}${color white} ${freq_g} GHz ${color white}${if_match ${cpu}>80}${color red}${else}${endif}${cpu}% ${offset 4}${cpugraph bfbfbf c0c0c0}${color white} ${color grey}1:${color white} ${if_match ${cpu cpu0}>80}${color red}${else}${endif}${cpu cpu0}% ${cpubar cpu0}${color white} ${color grey}2:${color white} ${if_match ${cpu cpu1}>80}${color red}${else}${endif}${cpu cpu1}% ${cpubar cpu1}${color white} @@ -100,6 +103,7 @@ ${color grey}Down: ${color white}${downspeedgraph re0 bfbfbf c0c0c0 125829120} ${color grey}Up: ${color white}${upspeedgraph re0 bfbfbf c0c0c0 125829120} ${hr} ${color grey}${alignc}DNS -${font1}${color white}${execi 300 cat /etc/resolv.conf}${font} +${font1}${color white}${nameserver 0}${font} +${font1}${color white}${nameserver 1}${font} ${hr}${endif} ]] -- cgit v1.2.3 From 058ed4ac2e520c3e1536778970d6abcce251b2f6 Mon Sep 17 00:00:00 2001 From: Joe Date: Tue, 17 Jan 2023 12:12:45 +0100 Subject: up --- .config/conkyrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.config/conkyrc') diff --git a/.config/conkyrc b/.config/conkyrc index 16b4663..f56e647 100644 --- a/.config/conkyrc +++ b/.config/conkyrc @@ -30,7 +30,7 @@ conky.config = { show_graph_range = false, alignment = 'top_right', minimum_width = 365, - minimum_height = 1030, + minimum_height = 1440, maximum_width = 365, gap_x = 0, gap_y = 40, -- cgit v1.2.3 From 2c728b96362eab06e07a61a305a5a0155f78258a Mon Sep 17 00:00:00 2001 From: Joe Date: Tue, 17 Jan 2023 16:01:37 +0100 Subject: up --- .config/conkyrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.config/conkyrc') diff --git a/.config/conkyrc b/.config/conkyrc index f56e647..3a03a77 100644 --- a/.config/conkyrc +++ b/.config/conkyrc @@ -57,7 +57,7 @@ ${color grey}${alignc}MPD ${font1}${color white}${goto 140}${mpd_artist} ${goto 140}${mpd_title} ${goto 140}${mpd_elapsed}/${mpd_length} ${mpd_bar} -${execi 5 ~/.local/bin/conky_cover.sh >/dev/null 2>&1}${image /tmp/conkyCover.png -p 20,40 -n} +${execi 5 ~/.local/bin/conky_cover.sh >/dev/null 2>&1}${image /tmp/conkyCover.png -p 20,150 -n} ${hr}${endif}${if_up re0} ${font2}${color white}${alignc}${execi 1800 curl wttr.in/Lyon?T0 --silent --max-time 3}${font} ${hr}${endif} -- cgit v1.2.3 From 307590cc89ad3c4f1eb4df839a82c0696a550d07 Mon Sep 17 00:00:00 2001 From: Joe Date: Tue, 17 Jan 2023 16:02:25 +0100 Subject: up --- .config/conkyrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.config/conkyrc') diff --git a/.config/conkyrc b/.config/conkyrc index 3a03a77..f93f60b 100644 --- a/.config/conkyrc +++ b/.config/conkyrc @@ -46,7 +46,7 @@ conky.config = { } conky.text = [[ -${color grey}${alignc}${time %A %e %B %Y : %Hh%M} +${color grey}${alignc}${time %A %e %B %Y - %Hh%M} ${hr} ${color grey}Terminal: ${font1}${color white}${nodename_short}${font} ${color grey}OS: ${font1}${color white}${sysname}${font} -- cgit v1.2.3 From 9aaf051495724304469f294f1c97d3817068b014 Mon Sep 17 00:00:00 2001 From: Joe Date: Tue, 17 Jan 2023 16:29:12 +0100 Subject: update --- .config/conkyrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.config/conkyrc') diff --git a/.config/conkyrc b/.config/conkyrc index f93f60b..e69a172 100644 --- a/.config/conkyrc +++ b/.config/conkyrc @@ -55,7 +55,7 @@ ${color grey}Uptime: ${font1}${color white}${uptime}${font} ${hr}${if_mpd_playing} ${color grey}${alignc}MPD ${font1}${color white}${goto 140}${mpd_artist} -${goto 140}${mpd_title} +${goto 140}${scroll wait 25 3 1 ${mpd_title}} ${goto 140}${mpd_elapsed}/${mpd_length} ${mpd_bar} ${execi 5 ~/.local/bin/conky_cover.sh >/dev/null 2>&1}${image /tmp/conkyCover.png -p 20,150 -n} ${hr}${endif}${if_up re0} -- cgit v1.2.3 From 7eabc900314cd93042f78123fe12ad2771050333 Mon Sep 17 00:00:00 2001 From: Joe Date: Tue, 31 Jan 2023 11:46:19 +0100 Subject: Pop update --- .config/conkyrc | 54 +++++++++++++++++++++++------------------------------- 1 file changed, 23 insertions(+), 31 deletions(-) (limited to '.config/conkyrc') diff --git a/.config/conkyrc b/.config/conkyrc index e69a172..4b95633 100644 --- a/.config/conkyrc +++ b/.config/conkyrc @@ -11,7 +11,7 @@ conky.config = { use_spacer = 'none', use_xft = true, xftalpha = 1, - font = 'Cantarell Mono:size=14', + font = 'NotoSansMono Nerd Font:size=14', font1 = 'Hack Nerd Font Mono:bold:size=11', font2 = 'Hack Nerd Font Mono:bold:size=10', template0 = '\\n', @@ -58,49 +58,41 @@ ${font1}${color white}${goto 140}${mpd_artist} ${goto 140}${scroll wait 25 3 1 ${mpd_title}} ${goto 140}${mpd_elapsed}/${mpd_length} ${mpd_bar} ${execi 5 ~/.local/bin/conky_cover.sh >/dev/null 2>&1}${image /tmp/conkyCover.png -p 20,150 -n} -${hr}${endif}${if_up re0} +${hr}${endif}${if_up enx4ce1734c425a} ${font2}${color white}${alignc}${execi 1800 curl wttr.in/Lyon?T0 --silent --max-time 3}${font} ${hr}${endif} -${color grey}${alignc}New mails${template0}\ -${if_match ${new_mails /var/mail/jozan/gmail_br/INBOX}>0}${color grey}GMail BR: ${font1}${color white}${new_mails /var/mail/jozan/gmail_br/INBOX}${font}${template0}${endif}\ -${if_match ${new_mails /var/mail/jozan/gmail_oon/INBOX}>0}${color grey}${color grey}GMail OON: ${font1}${color white}${new_mails /var/mail/jozan/gmail_oon/INBOX}${font}${template0}${endif}\ -${if_match ${new_mails /var/mail/jozan/gmail_tos/INBOX}>0}${color grey}${color grey}GMail TOS: ${font1}${color white}${new_mails /var/mail/jozan/gmail_tos/INBOX}${font}${template0}${endif}${hr} -${color grey}Battery: ${font1}${color white}${if_match ${battery_percent}<15}${color red}${endif}${battery_percent}% ${battery_bar}${font} +${color grey}CPU: ${font1}${color white} ${freq_g} GHz ${color white}${cpu}% +${offset 4}${cpugraph bfbfbf c0c0c0} +${color grey}1:${color white} ${cpu cpu0}% ${cpubar cpu0}${color white} +${color grey}2:${color white} ${cpu cpu1}% ${cpubar cpu1}${color white} +${color grey}3:${color white} ${cpu cpu2}% ${cpubar cpu2}${color white} +${color grey}4:${color white} ${cpu cpu3}% ${cpubar cpu3}${color white} +${color grey}5:${color white} ${cpu cpu4}% ${cpubar cpu4}${color white} +${color grey}6:${color white} ${cpu cpu5}% ${cpubar cpu5}${color white}${font} ${hr} -${color grey}CPU: ${font1}${color white} ${freq_g} GHz ${color white}${if_match ${cpu}>80}${color red}${else}${endif}${cpu}% -${offset 4}${cpugraph bfbfbf c0c0c0}${color white} -${color grey}1:${color white} ${if_match ${cpu cpu0}>80}${color red}${else}${endif}${cpu cpu0}% ${cpubar cpu0}${color white} -${color grey}2:${color white} ${if_match ${cpu cpu1}>80}${color red}${else}${endif}${cpu cpu1}% ${cpubar cpu1}${color white} -${color grey}3:${color white} ${if_match ${cpu cpu2}>80}${color red}${else}${endif}${cpu cpu2}% ${cpubar cpu2}${color white} -${color grey}4:${color white} ${if_match ${cpu cpu3}>80}${color red}${else}${endif}${cpu cpu3}% ${cpubar cpu3}${color white} -${color grey}5:${color white} ${if_match ${cpu cpu4}>80}${color red}${else}${endif}${cpu cpu4}% ${cpubar cpu4}${color white} -${color grey}6:${color white} ${if_match ${cpu cpu5}>80}${color red}${else}${endif}${cpu cpu5}% ${cpubar cpu5}${color white} -${color grey}7:${color white} ${if_match ${cpu cpu6}>80}${color red}${else}${endif}${cpu cpu6}% ${cpubar cpu6}${color white} -${color grey}8:${color white} ${if_match ${cpu cpu7}>80}${color red}${else}${endif}${cpu cpu7}% ${cpubar cpu7}${color white}${font} +${color grey}RAM: ${font1}${color white}${mem} / ${memmax} ${color white}${memperc}% ${membar 4}${font} +${offset 4}${memgraph bfbfbf c0c0c0} +${color grey}SWAP: ${font1}${color white}${swap} / ${swapmax} ${color white}${swapperc}% ${swapbar 4}${font} ${hr} -${color grey}RAM: ${font1}${color white}${mem} / ${memmax} ${color white}${if_match ${memperc}>80}${color red}${else}${endif}${memperc}% ${membar 4}${font} -${offset 4}${memgraph bfbfbf c0c0c0}${color white} -${color grey}SWAP: ${font1}${color white}${swap} / ${swapmax} ${color white}${if_match ${swapperc}>80}${color red}${else}${endif}${swapperc}% ${swapbar 4}${font} -${hr} -${color grey}SSD: ${font1}${color white}${if_match ${fs_free_perc /}<20}${color red}${else}${endif}${fs_free_perc /}% ${fs_bar 6 /}${font} +${color grey}SSD: ${font1}${color white}${fs_free_perc /}% ${fs_bar 6 /}${font} ${hr} ${color grey}Process:${color grey}${alignr}PID CPU MEM -${font1}${color white}${top name 1} ${alignr}${top pid 1} ${top cpu 1} ${top mem 1} -${font1}${color grey}${top name 2} ${alignr}${top pid 2} ${top cpu 2} ${top mem 2} -${font1}${color white}${top name 3} ${alignr}${top pid 3} ${top cpu 3} ${top mem 3} -${font1}${color grey}${top name 4} ${alignr}${top pid 4} ${top cpu 4} ${top mem 4}${font} +${font1}${color white}${top_mem name 1} ${alignr}${top_mem pid 1} ${top_mem cpu 1} ${top_mem mem_res 1} +${font1}${color grey}${top_mem name 2} ${alignr}${top_mem pid 2} ${top_mem cpu 2} ${top_mem mem_res 2} +${font1}${color white}${top_mem name 3} ${alignr}${top_mem pid 3} ${top_mem cpu 3} ${top_mem mem_res 3} +${font1}${color grey}${top_mem name 4} ${alignr}${top_mem pid 4} ${top_mem cpu 4} ${top_mem mem_res 4}${font} ${color grey}--------- ${color grey}Processes: ${color white}${processes} -${hr}${if_up re0} -${color grey}LAN IP: ${font1}${color white}${addr re0}${font} +${hr}${if_up enx4ce1734c425a} +${color grey}LAN IP: ${font1}${color white}${addr enx4ce1734c425a}${font} ${color grey}--------- ${color grey}VPN IP: ${font1}${color white}${addr proton0}${font} ${color grey}--------- ${color grey}Public IP: ${color white}${font1}${execi 300 curl -s https://ifconfig.me || echo No Address}${font}${color grey} ${hr} -${color grey}Down: ${color white}${font1}${downspeed re0} ${font}${color grey}- Up: ${color white}${font1}${upspeed re0}${font} -${color grey}Down: ${color white}${downspeedgraph re0 bfbfbf c0c0c0 125829120} -${color grey}Up: ${color white}${upspeedgraph re0 bfbfbf c0c0c0 125829120} +${color grey}Down: ${color white}${font1}${downspeed enx4ce1734c425a} ${font}${color grey}- Up: ${color white}${font1}${upspeed enx4ce1734c425a}${font} +${color grey}Down: ${color white}${downspeedgraph enx4ce1734c425a bfbfbf c0c0c0 125829120} +${color grey}Up: ${color white}${upspeedgraph enx4ce1734c425a bfbfbf c0c0c0 125829120} ${hr} ${color grey}${alignc}DNS ${font1}${color white}${nameserver 0}${font} -- cgit v1.2.3