dotfiles/river-classic/.config/river/volume.sh

12 lines
246 B
Bash
Raw Permalink Normal View History

2026-01-06 15:27:57 -08:00
#!/bin/sh
wobsock=$XDG_RUNTIME_DIR/wob.sock
if [ $1 = "up" ]; then
wpctl set-volume @DEFAULT_AUDIO_SINK@ "$2+"
else
wpctl set-volume @DEFAULT_AUDIO_SINK@ "$2-"
fi
wpctl get-volume @DEFAULT_AUDIO_SINK@ | sed 's/Volume: 0.//' > $wobsock