Files
dotfiles/home/config/eww/lib/media-play-pause.sh
T
2025-01-22 19:33:28 +02:00

8 lines
110 B
Bash
Executable File

#!/usr/bin/env sh
if [[ $(playerctl status) == "Playing" ]]; then
playerctl pause
else
playerctl play
fi