6 lines
134 B
Bash
Executable file
6 lines
134 B
Bash
Executable file
#!/bin/sh
|
|
if [ "$1" == "up" ]; then
|
|
wpctl set-volume @DEFAULT_SINK@ 5%+ -l 1.0
|
|
else
|
|
wpctl set-volume @DEFAULT_SINK@ 5%- -l 1.0
|
|
fi
|