Bump up sxmo_appmenu.sh to allow 16 entries

To allow surf to show all entries in one page.. this is the
max we can allow without running into keyboard
This commit is contained in:
Miles Alan 2020-07-26 11:22:59 -05:00
parent 5c1e382505
commit e20a467976

View file

@ -380,7 +380,7 @@ mainloop() {
getprogchoices "$ARGS"
echo "$PROGCHOICES" |
cut -d'^' -f1 |
dmenu -idx "$DMENUIDX" -l 14 -c -fn "Terminus-30" -p "$WINNAME" | (
dmenu -idx "$DMENUIDX" -l 16 -c -fn "Terminus-30" -p "$WINNAME" | (
PICKED="$(cat)"
echo "$PICKED" | grep . || quit
LOOP="$(echo "$PROGCHOICES" | grep -m1 -F "$PICKED" | cut -d '^' -f2)"