summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xclerk6
-rw-r--r--config.clerk4
2 files changed, 0 insertions, 10 deletions
diff --git a/clerk b/clerk
index 783f0a3..cb2425e 100755
--- a/clerk
+++ b/clerk
@@ -301,9 +301,6 @@ mpc playlist -f "%artist%${separator}%track%${separator}%title%${separator}%date
cd "$music_path"
cd "$(dirname "$(echo "$file")")"
- if [[ "$(pwd)" == */"$cd_divider"* ]]; then
- cd ..
- fi
touch album.rating
echo "${rating}${separator}${artist}${separator}${track}${separator}${title}${separator}${date}${separator}${album}" >> album.rating
done
@@ -855,9 +852,6 @@ rateAlbum () {
if [[ "$music_dir_access" == "yes" ]]; then
cd "$music_path"
cd "$(dirname "$(mpc current -f %file%)")"
- if [[ "$(pwd)" == */"$cd_divider"* ]]; then
- cd ..
- fi
rm -f album.rating
echo "${rating}${separator}$(mpc current -f "%artist%${separator}%track%${separator}%title%${separator}%date%${separator}%album%")" >> album.rating
fi
diff --git a/config.clerk b/config.clerk
index 0a00fc2..2af3fb2 100644
--- a/config.clerk
+++ b/config.clerk
@@ -25,10 +25,6 @@ stop_after_suspend=no
# instantly play newly added tracks
add_auto_play=yes
-# Change this, if you have subfolders for multi-disc albums.
-# This should match the name of your subfolders, exluding the number
-cd_divider=CD
-
# Separator used for splitting tags - Make sure this is something most
# likely not used in tags itself. Can be multiple characters
# If you change separator, update caches with clerk -update