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
+10
View File
@@ -0,0 +1,10 @@
#!/usr/bin/env bash
PLAYLIST_DIR="/home/user/Music/Playlists/"
BASENAME="/home/user/Music/$SELECTED_SONGS"
echo $BASENAME | kitty +kitten clipboard
if grep -q "$BASENAME" $PLAYLIST_DIR/*.m3u
then
notify-send "Song is in a playlist";
else
notify-send "Song isnt in a playlist";
fi