diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-01-09 20:07:10 +0100 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-01-09 20:07:10 +0100 |
commit | b3fdb09a1c512738fbe42aefb80a92b4560a5677 (patch) | |
tree | ea7d4736c323646707e33eaa3589ff321df2f622 /.local/bin/statusbar | |
parent | bec891dac2cc69a75e4c5d273b4a1f3893f5b14b (diff) |
Update icons for statusbar scripts
Diffstat (limited to '.local/bin/statusbar')
-rwxr-xr-x | .local/bin/statusbar/sb-cpu | 12 | ||||
-rwxr-xr-x | .local/bin/statusbar/sb-cpubars | 4 | ||||
-rwxr-xr-x | .local/bin/statusbar/sb-gpubar | 20 | ||||
-rwxr-xr-x | .local/bin/statusbar/sb-internet | 24 | ||||
-rwxr-xr-x | .local/bin/statusbar/sb-mailbox | 8 | ||||
-rwxr-xr-x | .local/bin/statusbar/sb-memory | 6 | ||||
-rwxr-xr-x | .local/bin/statusbar/sb-nettraf | 6 | ||||
-rwxr-xr-x | .local/bin/statusbar/sb-pacpackages | 4 | ||||
-rwxr-xr-x | .local/bin/statusbar/sb-volume | 12 |
9 files changed, 42 insertions, 54 deletions
diff --git a/.local/bin/statusbar/sb-cpu b/.local/bin/statusbar/sb-cpu deleted file mode 100755 index 1572b52..0000000 --- a/.local/bin/statusbar/sb-cpu +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/sh - -case $BLOCK_BUTTON in - 1) notify-send "๐ฅ CPU hogs" "$(ps axch -o cmd:15,%cpu --sort=-%cpu | head)\\n(100% per core)" ;; - 2) setsid -f "$TERMINAL" -e htop ;; - 3) notify-send "๐ฅ CPU module " "\- Shows CPU temperature. -- Click to show intensive processes. -- Middle click to open htop." ;; - 6) "$TERMINAL" -e "$EDITOR" "$0" ;; -esac - -sensors | awk '/Core 0/ {print "๐ก" $3}' diff --git a/.local/bin/statusbar/sb-cpubars b/.local/bin/statusbar/sb-cpubars index 1684ead..a40dd05 100755 --- a/.local/bin/statusbar/sb-cpubars +++ b/.local/bin/statusbar/sb-cpubars @@ -10,7 +10,7 @@ cache=/tmp/cpubarscache case $BLOCK_BUTTON in 2) setsid -f "$TERMINAL" -e htop ;; - 3) notify-send "๏ CPU load module" "Each bar represents + 3) notify-send "๓ฐป CPU load module" "Each bar represents one CPU core";; 6) "$TERMINAL" -e "$EDITOR" "$0" ;; esac @@ -19,7 +19,7 @@ esac stats=$(awk '/cpu[0-9]+/ {printf "%d %d %d\n", substr($1,4), ($2 + $3 + $4 + $5), $5 }' /proc/stat) [ ! -f $cache ] && echo "$stats" > "$cache" old=$(cat "$cache") -printf "CPU: " +printf "" echo "$stats" | while read -r row; do id=${row%% *} rest=${row#* } diff --git a/.local/bin/statusbar/sb-gpubar b/.local/bin/statusbar/sb-gpubar index d19995d..2fe6658 100755 --- a/.local/bin/statusbar/sb-gpubar +++ b/.local/bin/statusbar/sb-gpubar @@ -4,23 +4,23 @@ case $BLOCK_BUTTON in 2) setsid -f "$TERMINAL" -e gpuwatch ;; - 3) notify-send "๏ GPU load module" "The bar represents + 3) notify-send "๓ฐขฎ GPU load module" "The bar represents GPU load";; 6) "$TERMINAL" -e "$EDITOR" "$0" ;; esac # id total idle load=$(nvidia-smi --query-gpu=utilization.memory --format=csv | awk 'FNR == 2 {print $1}') -printf "GPU: " +printf "" case "$load" in - [0-9]) printf "โ";; - 1[0-9]) printf "โ";; - 2[0-9]) printf "โ";; - 3[0-9]) printf "โ";; - 4[0-9]) printf "โ
";; - 5[0-9]) printf "โ";; - 6[0-9]) printf "โ";; - 7[0-9]) printf "โ";; + [0-9]|1[0-9]) printf "โ";; + 2[0-9]) printf "โ";; + 3[0-9]) printf "โ";; + 4[0-9]) printf "โ";; + 5[0-9]) printf "โ
";; + 6[0-9]) printf "โ";; + 7[0-9]) printf "โ";; + 8[0-9]) printf "โ";; *) printf "โ";; esac printf "\\n" diff --git a/.local/bin/statusbar/sb-internet b/.local/bin/statusbar/sb-internet index ee1a160..77f7ac0 100755 --- a/.local/bin/statusbar/sb-internet +++ b/.local/bin/statusbar/sb-internet @@ -1,24 +1,24 @@ #!/bin/sh -# Show wifi ๐ถ and percent strength or ๐ก if none. -# Show ๐ if connected to ethernet or โ if none. -# Show ๐ if a vpn connection is active +# Show wifi ๓ฐคจ and percent strength or ๓ฐคซ if none. +# Show ๓ฐ if connected to ethernet or ๓ฑ if none. +# Show ๓ฑ if a vpn connection is active case $BLOCK_BUTTON in 1) "$TERMINAL" -e nmtui; pkill -RTMIN+4 dwmblocks ;; - 3) notify-send "๐ Internet module" "\- Click to connect -๐ก: no wifi connection -๐ถ: wifi connection with quality -โ: no ethernet -๐: ethernet working -๐: vpn is active + 3) notify-send "๓ฐ Internet module" "\- Click to connect +๓ฐคซ: no wifi connection +๓ฐคจ: wifi connection with quality +๓ฑ: no ethernet +๓ฐ: ethernet working +๓ฑ: vpn is active " ;; 6) "$TERMINAL" -e "$EDITOR" "$0" ;; esac case "$(cat /sys/class/net/w*/operstate 2>/dev/null)" in - down) wifiicon="๐ก " ;; - up) wifiicon="$(awk '/^\s*w/ { print "๐ถ", int($3 * 100 / 70) "% " }' /proc/net/wireless)" ;; + down) wifiicon="๓ฐคซ " ;; + up) wifiicon="$(awk '/^\s*w/ { print "๓ฐคจ", int($3 * 100 / 70) "% " }' /proc/net/wireless)" ;; esac -printf "%s%s%s\n" "$wifiicon" "$(sed "s/down/โ/;s/up/๐/" /sys/class/net/e*/operstate 2>/dev/null)" "$(sed "s/.*/๐/" /sys/class/net/tun*/operstate 2>/dev/null)" +printf "%s%s%s\n" "$wifiicon" "$(sed "s/down/๓ฑ/;s/up/๓ฐ/" /sys/class/net/e*/operstate 2>/dev/null)" "$(sed "s/.*/๓ฑ/" /sys/class/net/tun*/operstate 2>/dev/null)" diff --git a/.local/bin/statusbar/sb-mailbox b/.local/bin/statusbar/sb-mailbox index a0fa21b..16006de 100755 --- a/.local/bin/statusbar/sb-mailbox +++ b/.local/bin/statusbar/sb-mailbox @@ -6,8 +6,8 @@ case $BLOCK_BUTTON in 1) setsid -f "$TERMINAL" -e neomutt ;; 2) setsid -f mw -Y >/dev/null ;; - 3) notify-send "๐ฌ Mail module" "\- Shows unread mail -- Shows ๐ if syncing mail + 3) notify-send "๓ฐปง Mail module" "\- Shows unread mail +- Shows ๓ฑ if syncing mail - Left click opens neomutt - Middle click syncs mail" ;; 6) "$TERMINAL" -e "$EDITOR" "$0" ;; @@ -15,6 +15,6 @@ esac unread="$(find "${XDG_DATA_HOME:-$HOME/.local/share}"/mail/*/[Ii][Nn][Bb][Oo][Xx]/new/ -type f | wc -l 2>/dev/null)" -pidof mbsync >/dev/null 2>&1 && icon="๐" +pidof mbsync >/dev/null 2>&1 && icon=" ๓ฑ" -[ "$unread" = "0" ] && [ "$icon" = "" ] || echo "๐ฌ$unread$icon" +[ "$unread" = "0" ] && [ "$icon" = "" ] || echo "๓ฐปง $unread$icon" diff --git a/.local/bin/statusbar/sb-memory b/.local/bin/statusbar/sb-memory index d64f241..d44a416 100755 --- a/.local/bin/statusbar/sb-memory +++ b/.local/bin/statusbar/sb-memory @@ -1,12 +1,12 @@ #!/bin/sh case $BLOCK_BUTTON in - 1) notify-send "๏ Memory hogs" "$(ps axch -o cmd:15,%mem --sort=-%mem | head)" ;; + 1) notify-send "๓ฐง Memory hogs" "$(ps axch -o cmd:15,%mem --sort=-%mem | head)" ;; 2) setsid -f "$TERMINAL" -e htop ;; - 3) notify-send "๏ Memory module" "\- Shows Memory Used/Total. + 3) notify-send "๓ฐง Memory module" "\- Shows Memory Used/Total. - Click to show memory hogs. - Middle click to open htop." ;; 6) "$TERMINAL" -e "$EDITOR" "$0" ;; esac -free --mebi | sed -n '2{p;q}' | awk '{printf ("RAM: %2.2fGiB\n", ( $3 / 1024))}' +free --mebi | sed -n '2{p;q}' | awk '{printf ("%2.2fGiB\n", ( $3 / 1024))}' diff --git a/.local/bin/statusbar/sb-nettraf b/.local/bin/statusbar/sb-nettraf index 132d8bf..9cf88b3 100755 --- a/.local/bin/statusbar/sb-nettraf +++ b/.local/bin/statusbar/sb-nettraf @@ -6,8 +6,8 @@ case $BLOCK_BUTTON in 1) setsid -f "$TERMINAL" -e bmon ;; - 3) notify-send "๐ Network traffic module" "๏: Traffic received -๏: Traffic transmitted" ;; + 3) notify-send "๓ฐ Network traffic module" "๓ฐ
: Traffic received +๓ฐ
: Traffic transmitted" ;; 6) "$TERMINAL" -e "$EDITOR" "$0" ;; esac @@ -26,4 +26,4 @@ update() { rx=$(update /sys/class/net/[ew]*/statistics/rx_bytes) tx=$(update /sys/class/net/[ew]*/statistics/tx_bytes) -printf "Net: ๏ %4sB ๏ %4sB\\n" $(numfmt --to=iec $rx) $(numfmt --to=iec $tx) +printf "๓ฐ
%4sB ๓ฐ
%4sB\\n" $(numfmt --to=iec $rx) $(numfmt --to=iec $tx) diff --git a/.local/bin/statusbar/sb-pacpackages b/.local/bin/statusbar/sb-pacpackages index 37ebed3..7633dac 100755 --- a/.local/bin/statusbar/sb-pacpackages +++ b/.local/bin/statusbar/sb-pacpackages @@ -20,10 +20,10 @@ case $BLOCK_BUTTON in 1) setsid -f "$TERMINAL" -e sb-popupgrade ;; 2) notify-send "$(/usr/bin/pacman -Qu)" ;; - 3) notify-send "๐ Upgrade module" "๐ฆ: number of upgradable packages + 3) notify-send "๓ฐ Upgrade module" "๓ฐ: number of upgradable packages - Left click to upgrade packages - Middle click to show upgradable packages" ;; 6) "$TERMINAL" -e "$EDITOR" "$0" ;; esac -pacman -Qu | grep -Fcv "[ignored]" | sed "s/^/๐ฆ/;s/^๐ฆ0$//g" +pacman -Qu | grep -Fcv "[ignored]" | sed "s/^/๓ฐ/;s/^๓ฐ0$//g" diff --git a/.local/bin/statusbar/sb-volume b/.local/bin/statusbar/sb-volume index d396108..a62181e 100755 --- a/.local/bin/statusbar/sb-volume +++ b/.local/bin/statusbar/sb-volume @@ -1,28 +1,28 @@ #!/bin/sh -# Prints the current volume or ๐ if muted. +# Prints the current volume or ๓ฐ if muted. case $BLOCK_BUTTON in 1) setsid -f "$TERMINAL" -e pulsemixer ;; 2) pamixer -t ;; 4) pamixer --allow-boost -i 1 ;; 5) pamixer --allow-boost -d 1 ;; - 3) notify-send "๐ข Volume module" "\- Shows volume ๐, ๐ if muted. + 3) notify-send "๓ฐฌฃ Volume module" "\- Shows volume ๓ฐพ, ๓ฐ if muted. - Middle click to mute. - Scroll to change." ;; 6) "$TERMINAL" -e "$EDITOR" "$0" ;; esac -[ $(pamixer --get-mute) = true ] && echo ๐ && exit +[ $(pamixer --get-mute) = true ] && echo ๓ฐ && exit vol="$(pamixer --get-volume)" if [ "$vol" -gt "70" ]; then - icon="๐" + icon="๓ฐพ" elif [ "$vol" -lt "30" ]; then - icon="๐" + icon="๓ฐฟ" else - icon="๐" + icon="๓ฐ" fi echo "$icon $vol%" |