mirror of
https://github.com/CoolnsX/hyprdots.git
synced 2025-12-20 23:35:23 +05:30
9 lines
293 B
Bash
Executable File
9 lines
293 B
Bash
Executable File
#!/bin/sh
|
|
|
|
vol_int=$(pamixer --get-volume)
|
|
vol_icon="low"
|
|
[ "$vol_int" -gt 33 ] && vol_icon="medium"
|
|
[ "$vol_int" -gt 66 ] && vol_icon="high"
|
|
pamixer --get-mute | sh && vol_icon="muted"
|
|
notify-send -i "/usr/share/icons/Papirus/16x16/panel/audio-volume-$vol_icon.svg" "$vol_int %" -t 1000 -r 1
|