🎨 ux(bin): added spotify icon to the downloadSpotify script

This commit is contained in:
Sergio Laín 2024-01-01 15:03:39 +01:00
parent fd1ea55907
commit 5117aa715a
No known key found for this signature in database
GPG key ID: 14C9B8080681777B

View file

@ -1,7 +1,7 @@
#!/usr/bin/bash
if ! command -v spotdl &>/dev/null; then
notify-send "Spotdl Sync" "Error: spotdl is not installed"
notify-send "Spotdl Sync" "Error: spotdl is not installed" --icon=spotify --app-name=spotify
exit 1
fi
@ -14,7 +14,7 @@ FOLDERS=(
"Cyberpunk-Darksynth"
)
notify-send "Spotdl Sync" "Started syncing..."
notify-send "Spotdl Sync" "Started syncing..." --icon=spotify --app-name=spotify
for FOLDER in "${FOLDERS[@]}"; do
cd "$HOME/Musica/Listen-To/$FOLDER" || continue