18 lines
240 B
Bash
Executable File
18 lines
240 B
Bash
Executable File
#!/bin/sh
|
|
|
|
PLAYER="spotify"
|
|
|
|
|
|
|
|
if [ "$(pidof "$PLAYER")" != "" ];
|
|
then
|
|
if [ "$(playerctl --player="$PLAYER" status)" == "Playing" ];
|
|
then
|
|
playerctl --player="$PLAYER" pause
|
|
else
|
|
playerctl --player="$PLAYER" play
|
|
fi
|
|
else
|
|
echo ""
|
|
fi
|