summaryrefslogtreecommitdiff
path: root/hypr/.config
diff options
context:
space:
mode:
authorbh <qn+git@epicurus.dev>2026-03-08 14:52:28 +0800
committerbh <qn+git@epicurus.dev>2026-03-08 14:52:28 +0800
commit7ce9aa173d7d1ecd9dec8eed31980a16c0f14202 (patch)
treeffa0a26dc4b0ded3d2b224cfa56aee6f08b55b9d /hypr/.config
parentdb851843482e87d4210c472ba9be387ee0041382 (diff)
Add system tray, volume slider, and analog clock to quickshell
Diffstat (limited to 'hypr/.config')
-rwxr-xr-xhypr/.config/hypr/scripts/mute2
1 files changed, 1 insertions, 1 deletions
diff --git a/hypr/.config/hypr/scripts/mute b/hypr/.config/hypr/scripts/mute
index 7d17b92..ad61d7d 100755
--- a/hypr/.config/hypr/scripts/mute
+++ b/hypr/.config/hypr/scripts/mute
@@ -7,7 +7,7 @@ pactl set-sink-mute @DEFAULT_SINK@ toggle
MUTE=$(pactl get-sink-mute @DEFAULT_SINK@ | awk '{print $2}')
if [ "$MUTE" = "yes" ]; then
- dunstify " Volume: Muted" -r 2593 -t 1000
+ dunstify "󰖁 Volume: Muted" -r 2593 -t 1000
else
VOLUME=$(pactl get-sink-volume @DEFAULT_SINK@ | grep -Po "\d+%" | head -1)
dunstify " Volume: $VOLUME" -h int:value:${VOLUME%\%} -r 2593 -t 1000