8 lines
166 B
Bash
Executable File
8 lines
166 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [[ $1 == "down" ]]; then
|
|
playerctl --player=spotify,%any volume 0.05-
|
|
elif [[ $1 == "up" ]]; then
|
|
playerctl --player=spotify,%any volume 0.05+
|
|
fi
|