Add -l 10 option to dmenu

pull/2/head
Nikita Ivanov 2 years ago
parent ccbd3e249b
commit 1be1094f41
No known key found for this signature in database
GPG Key ID: 6E656AC5B97B5133

@ -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