Files
arthur-os/default/waybar/media_click.sh
T
2026-06-17 19:07:16 +02:00

9 lines
153 B
Bash

#!/bin/bash
PLAYER="subtui"
if playerctl -l 2>/dev/null | grep -q "^${PLAYER}$"; then
playerctl -p "$PLAYER" play-pause
else
ghostty -e subtui &
fi