diff options
author | Joe <rrbo@proton.me> | 2023-07-28 12:14:12 +0200 |
---|---|---|
committer | Joe <rrbo@proton.me> | 2023-07-28 12:14:12 +0200 |
commit | 657526de628c0f70088671d7d01c857653501768 (patch) | |
tree | 6fe201f9ea15d442178c332916f4376e08a4129f | |
parent | up (diff) | |
download | dotfiles-bsd-657526de628c0f70088671d7d01c857653501768.tar.gz dotfiles-bsd-657526de628c0f70088671d7d01c857653501768.tar.bz2 dotfiles-bsd-657526de628c0f70088671d7d01c857653501768.tar.xz dotfiles-bsd-657526de628c0f70088671d7d01c857653501768.tar.zst dotfiles-bsd-657526de628c0f70088671d7d01c857653501768.zip |
up
Diffstat (limited to '')
-rw-r--r-- | .config/conky/conkyrc | 4 | ||||
-rwxr-xr-x | .local/bin/conky/net.sh | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.config/conky/conkyrc b/.config/conky/conkyrc index be28ad8..4b33d3f 100644 --- a/.config/conky/conkyrc +++ b/.config/conky/conkyrc @@ -102,9 +102,9 @@ ${color0}${font ConkySymbols:size=18}i${font :Bold:} ${voffset -5}NETWORK${align ${color 81B562}${offset 3}${downspeedgraph eth1 50,190 000000 81B562 128000000}${goto 205}${color SteelBlue}${upspeedgraph eth1 50,190 000000 4682B4 128000000} ${color0}${voffset -55}${offset 10}Download${goto 210}Upload${offset 10} ${offset 10} ${downspeed eth1} ${goto 210}${upspeed eth1}${endif}${if_match "${nodename_short}" == "po-rbo"} -${color 81B562}${offset 3}${downspeedgraph enx34298f762de7 50,190 000000 81B562 128000000} ${color SteelBlue}${upspeedgraph enx34298f762de7 50,190 000000 4682B4 128000000} +${color 81B562}${offset 3}${downspeedgraph eth0 50,190 000000 81B562 128000000} ${color SteelBlue}${upspeedgraph eth0 50,190 000000 4682B4 128000000} ${color0}${voffset -55}${offset 10}Download${goto 210}Upload${offset 10} -${offset 10} ${downspeed enx34298f762de7} ${goto 210}${upspeed enx34298f762de7}${endif} +${offset 10} ${downspeed eth0} ${goto 210}${upspeed eth0}${endif} ${color0}${hr}${font} ${font ConkySymbols:size=18:bold}h${font :bold:}${voffset -5}TEMPERATURES ${goto 150}${font}${if_match "${nodename_short}" == "moother"} ${color EE4444}${execbar sensors | grep CPUTIN | awk '{print $2}'} diff --git a/.local/bin/conky/net.sh b/.local/bin/conky/net.sh index 2f5ab88..3332e37 100755 --- a/.local/bin/conky/net.sh +++ b/.local/bin/conky/net.sh @@ -6,7 +6,7 @@ case "$(hostname -s)" in if_alt="eth0" ;; po-rbo) - if_main="enx34298f762de7" + if_main="eth0" if_alt="wlp1s0" ;; mars) |