14 lines
183 B
Bash
14 lines
183 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
if [[ $1 == "prev" ]]; then
|
||
|
playerctl previous
|
||
|
fi
|
||
|
|
||
|
if [[ $1 == "play-pause" ]]; then
|
||
|
playerctl play-pause
|
||
|
fi
|
||
|
|
||
|
if [[ $1 == "next" ]]; then
|
||
|
playerctl next
|
||
|
fi
|