mirror of
https://github.com/italicsjenga/dotfiles.git
synced 2024-11-24 01:51:32 +11:00
19 lines
243 B
Bash
Executable file
19 lines
243 B
Bash
Executable file
#!/bin/sh
|
|
|
|
case $1 in
|
|
"play")
|
|
playerctl play-pause
|
|
;;
|
|
"next")
|
|
playerctl next
|
|
;;
|
|
"prev")
|
|
playerctl previous
|
|
;;
|
|
*)
|
|
echo "Usage: $0 play|next|prev"
|
|
exit 1
|
|
;;
|
|
esac
|
|
exit 0
|