Skip to content

Commit 96a4448

Browse files
committed
fix broken case statement
1 parent b922004 commit 96a4448

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkmenu

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Written in POSIX shell, change the shebang or symlink to your favourite shell
55
# Originally based on czaplicki/rofi-polkit-agent
66

7-
VERSION="1.0.0"
7+
VERSION="1.0.1"
88

99
print_usage_and_exit() {
1010
echo "usage: $0 [-l dmenu|rofi|fuzzel] [-a \"launcher args\"] [-v]"
@@ -28,7 +28,7 @@ get_response() {
2828
"dmenu") printf "$message" | dmenu -P -p "$prompt" $LAUNCHER_ARGS || \
2929
printf "$message" | dmenu -p "$prompt" $LAUNCHER_ARGS ;;
3030
"rofi") printf "" | rofi -dmenu -p "$prompt" -mesg "$message" -password -no-fixed-num-lines $LAUNCHER_ARGS ;;
31-
"fuzzel") fuzzel --dmenu --prompt-only="$prompt" --password $LAUNCHER_ARGS
31+
"fuzzel") fuzzel --dmenu --prompt-only="$prompt" --password $LAUNCHER_ARGS ;;
3232
esac
3333
}
3434

0 commit comments

Comments
 (0)