add files

This commit is contained in:
2026-06-06 12:24:00 +02:00
commit 22296aa139
22 changed files with 3425 additions and 0 deletions
Executable
+9
View File
@@ -0,0 +1,9 @@
#!/bin/bash
mpd_status=$(playerctl --player=mpd status 2>/dev/null)
if [ "$mpd_status" == "Playing" ]; then
playerctl --player=mpd pause
else
playerctl --player=mpd play 2>/dev/null || playerctl --player=spotify play
fi