From: Tucker Johnson Date: Sat, 17 Jan 2026 13:57:05 +0000 (-0500) Subject: emojis X-Git-Url: https://git.newer.systems/?a=commitdiff_plain;p=dwmblocks.git emojis --- diff --git a/statusbar-scripts/sb-memory b/statusbar-scripts/sb-memory index 351f9da..b74338a 100755 --- a/statusbar-scripts/sb-memory +++ b/statusbar-scripts/sb-memory @@ -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 diff --git a/statusbar-scripts/sb-volume b/statusbar-scripts/sb-volume index 14ca8c5..17bf668 100755 --- a/statusbar-scripts/sb-volume +++ b/statusbar-scripts/sb-volume @@ -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" ;; diff --git a/statusbar-scripts/sb-weather b/statusbar-scripts/sb-weather index 15e8734..b5486d2 100755 --- a/statusbar-scripts/sb-weather +++ b/statusbar-scripts/sb-weather @@ -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