Files
hyprdots/hypr/volume
coolnsx 7f905cc49f ...
2024-05-03 16:06:38 +05:30

10 lines
394 B
Bash
Executable File

#!/bin/sh
vol_int=$(pamixer --get-volume)
vol_icon="low"
#[ "$vol_int" -gt 0 ] && pamixer -u || pamixer -m
[ "$vol_int" -gt 33 ] && vol_icon="medium"
[ "$vol_int" -gt 66 ] && vol_icon="high"
pamixer --get-mute | sh && vol_icon="muted"
notify-send -e -i "/usr/share/icons/Papirus/16x16/panel/audio-volume-$vol_icon.svg" "$vol_int %" -h "string:x-canonical-private-synchronous:${0##*/}" -t 1000