From 668e6e8e1c3c8d27c2dbbfb477b5c580daa3eadd Mon Sep 17 00:00:00 2001 From: Rasmus Steinke Date: Fri, 31 Oct 2014 19:52:18 +0100 Subject: small visual bugfix --- clerk | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/clerk b/clerk index 9246305..52e4938 100755 --- a/clerk +++ b/clerk @@ -131,11 +131,11 @@ browseFilesystem () { chose() { if [[ -d "$selection" ]]; then cd "$selection" - selection="$(echo -e "0 Return to Library Menu\n1 Add all music files\n---\n$(ls)" | rofi -dmenu -p "Chose Directory/Files > ")" + selection="$(echo -e "0 Return to Library Menu\n1 Add all music files\n---\n$(ls)" | rofi -dmenu -p "Chose Directory/Files > ")" chose - elif [[ "$selection" == "1 Add all music files" ]]; then + elif [[ "$selection" == "1 Add all music files" ]]; then comboadd - elif [[ "$selection" == "0 Return to Library Menu" ]]; then + elif [[ "$selection" == "0 Return to Library Menu" ]]; then browseLibPrompt elif [[ "$selection" == "" ]]; then exit @@ -144,7 +144,7 @@ browseFilesystem () { } cd ~ - selection="$(echo -e "Add all music files\n---\n$(ls)" | rofi -dmenu -p "Chose Directory/Files > ")" + selection="$(echo -e "0 Return to Library Menu\n1 Add all music files\n---\n$(ls)" | rofi -dmenu -p "Chose Directory/Files > ")" chose } -- cgit v1.2.3-24-g4f1b