From 1be1094f4161cd97e4148fbd4c5ebed8c796ff79 Mon Sep 17 00:00:00 2001 From: Nikita Ivanov Date: Sat, 14 May 2022 03:01:42 +0500 Subject: [PATCH] Add -l 10 option to dmenu --- rofi-checklist.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rofi-checklist.sh b/rofi-checklist.sh index f57898b..a3eb51d 100755 --- a/rofi-checklist.sh +++ b/rofi-checklist.sh @@ -59,7 +59,7 @@ case $menu in command="rofi -dmenu"; options="-selected-row 2" ;; dmenu) exe_exists dmenu || { echo "dmenu isn't installed"; exit 1; } - command=dmenu ;; + command=dmenu; options="-l 10" ;; *) echo "Please install either rofi or dmenu"; exit 1 ;; esac