From e8b5675eb77aa20027f369ca278457b6a7c2e142 Mon Sep 17 00:00:00 2001 From: shipwreckt Date: Mon, 18 Aug 2025 12:01:10 +0100 Subject: Some changes to my Nvim setup! --- files/config/mpd/scripts/artist.sh | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100755 files/config/mpd/scripts/artist.sh (limited to 'files/config/mpd/scripts/artist.sh') diff --git a/files/config/mpd/scripts/artist.sh b/files/config/mpd/scripts/artist.sh deleted file mode 100755 index bcf0508..0000000 --- a/files/config/mpd/scripts/artist.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/bash -# Define the directory containing your music files -MUSIC_DIR="Music/Dead_Kennedys/Dead_Kennedys_-_Give_Me_Convenience_Or_Give_Me_Death" -# Define the new artist name -NEW_ARTIST="Dead Kennedys" - -# Loop through all .flac files in the folder -for song in "$MUSIC_DIR"/*.flac; do - # Update the artist metadata for each file - metaflac --remove-tag=ARTIST "$song" - metaflac --set-tag=ARTIST="$NEW_ARTIST" "$song" -done - -- cgit v1.2.3