mirror of
https://github.com/GeorgeSG/dotfiles.git
synced 2026-09-06 17:38:45 +00:00
10 lines
214 B
Bash
10 lines
214 B
Bash
#!/usr/bin/env sh
|
|
|
|
if [[ $1 == "up" ]]; then
|
|
wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%+
|
|
elif [[ $1 == "down" ]]; then
|
|
wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-
|
|
else
|
|
wpctl set-volume @DEFAULT_AUDIO_SINK@ $1
|
|
fi
|