]> git.newer.systems Git - dwmblocks.git/commitdiff
emojis main
authorTucker Johnson <tucker@newer.systems>
Sat, 17 Jan 2026 13:57:05 +0000 (08:57 -0500)
committerTucker Johnson <tucker@newer.systems>
Sat, 17 Jan 2026 13:57:05 +0000 (08:57 -0500)
statusbar-scripts/sb-memory
statusbar-scripts/sb-volume
statusbar-scripts/sb-weather

index 351f9dabc1a6021fec56bd6d873c3d7162625375..b74338ac477def096b512748cd1b0572ef839df7 100755 (executable)
@@ -1,8 +1,8 @@
 #!/bin/sh
 
 case $BLOCK_BUTTON in
-       1) notify-send " memory users" "$(ps axch -o cmd:15,%mem --sort=-%mem | head)" ;;
-       3) notify-send " memory status" "\- shows memory used/total
+       1) notify-send "🧠 memory users" "$(ps axch -o cmd:15,%mem --sort=-%mem | head)" ;;
+       3) notify-send "🧠 memory status" "\- shows memory used/total
 - left click to show memory users" ;;
        6) setsid -f "$TERMINAL" -e "$EDITOR" "$0" ;;
 esac
index 14ca8c56121e674e572ca83752835dbc21c7d624..17bf6680f81e05f2299d8db14c02f3f86baefbe4 100755 (executable)
@@ -4,10 +4,10 @@ case $BLOCK_BUTTON in
     1) device=$(pactl get-default-sink)
         otherDevices=$(pactl list short sinks | grep -v $device | awk '{print $2}' | cut -d'.' -f2 | cut -c -25)
         pkill -RTMIN+10 "${STATUSBAR:-dwmblocks}" ;
-        notify-send " Devices" "*$(echo $device | cut -d'.' -f2 | cut -c -25)
+        notify-send "📢 Devices" "*$(echo $device | cut -d'.' -f2 | cut -c -25)
 $otherDevices" ;;
        2) wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle ;;
-       3) notify-send " sound" "\- shows volume ,  if muted.
+       3) notify-send "📢 sound" "\- shows volume ,  if muted.
 - left-click to show audio device
 - middle-click to mute" ;;
        6) setsid -f "$TERMINAL" -e "$EDITOR" "$0" ;;
index 15e87349f82dfa29c004075e211db09d9cea4a06..b5486d21cc7cee795e7031d22c4edae71b15083b 100755 (executable)
@@ -1,7 +1,7 @@
 #!/bin/sh
 
 case $BLOCK_BUTTON in
-    1) notify-send " weather" "$(curl 'wttr.in/Brockport?format=%l:+\n%C+%c\nfeels-like:%f+actual:%t\nsunrise:%S+sunset:%s\n')" ;;
+    1) notify-send "🌦️ weather" "$(curl 'wttr.in/Brockport?format=%l:+\n%C+%c\nfeels-like:%f+actual:%t\nsunrise:%S+sunset:%s\n')" ;;
        6) setsid -f "$TERMINAL" -e "$EDITOR" "$0" ;;
 esac