Initial commit

This commit is contained in:
Pablu23
2024-05-24 13:34:37 +02:00
commit 1c4268600b
21 changed files with 1413 additions and 0 deletions

8
.config/waybar/mediaplayer.sh Executable file
View File

@@ -0,0 +1,8 @@
#!/bin/sh
player_status=$(playerctl status 2> /dev/null)
if [ "$player_status" = "Playing" ]; then
echo "$(playerctl metadata artist) - $(playerctl metadata title)"
elif [ "$player_status" = "Paused" ]; then
echo "$(playerctl metadata artist) - $(playerctl metadata title)"
fi