mirror of
https://github.com/GeorgeSG/dotfiles.git
synced 2026-09-07 09:48:44 +00:00
8 lines
110 B
Bash
Executable File
8 lines
110 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
if [[ $(playerctl status) == "Playing" ]]; then
|
|
playerctl pause
|
|
else
|
|
playerctl play
|
|
fi
|