summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRasmus Steinke <rasi@xssn.at>2014-10-05 03:30:47 +0200
committerRasmus Steinke <rasi@xssn.at>2014-10-05 03:30:47 +0200
commite4fec2589b620e5089c75cef8b36702d38c74510 (patch)
tree2aedcda40f5206d68d5c8dfab366045e2fd34838
parent489e65ad016efe701b76c206af026975b535c026 (diff)
downloadperl-app-clerk-e4fec2589b620e5089c75cef8b36702d38c74510.tar.gz
perl-app-clerk-e4fec2589b620e5089c75cef8b36702d38c74510.tar.xz
made rating range static to be conform with cantata
-rwxr-xr-xclerk2
-rw-r--r--config.clerk6
2 files changed, 1 insertions, 7 deletions
diff --git a/clerk b/clerk
index 34dcf4c..abb3e68 100755
--- a/clerk
+++ b/clerk
@@ -661,7 +661,7 @@ loadRatedTracks () {
loadRandomRatedTracks () {
number="$(echo " " | dmenu_t -p "Number of Songs > " | xargs echo)"
- rating="$(seq "$track_maxratings" | dmenu_t -p "Minimum Rating > ")"
+ rating="$(seq 10 | dmenu_t -p "Minimum Rating > ")"
if [ rating = "" ]; then
exit
else
diff --git a/config.clerk b/config.clerk
index 327d8d3..d8179ac 100644
--- a/config.clerk
+++ b/config.clerk
@@ -10,12 +10,6 @@ backend=rofi
# will be copied to their associated album
music_dir_access=yes
-# maximum rating for album ratings
-maxratings=10
-
-# maximum ratings for track ratings
-track_maxratings=5
-
# path to your music
music_path="/path/to/music_directory"