dotfiles/hypr/scripts/set-volume.sh
2023-12-01 16:58:57 +08:00

7 lines
184 B
Bash
Executable File

#!/bin/bash
amixer set Master unmute
amixer set Master $1
VOLUME=$(echo $(amixer get Master | grep -oP '(?<=\[)[^\[\]]*(?=\])') | awk '{print $1}')
notify-send -r 1 "Volume: $VOLUME"