mirror of
https://github.com/arthur-pbty/arch-custom-iso.git
synced 2026-08-01 20:28:05 +02:00
9 lines
153 B
Bash
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 |