sxmo_appmenu.sh: Never literal string grep match on empty string

This commit is contained in:
Miles Alan 2020-06-27 20:01:40 -05:00
parent 6cbd8670c5
commit 26d8ff0ba6

View file

@ -242,6 +242,7 @@ mainloop() {
cut -d'^' -f1 |
dmenu -idx "$DMENUIDX" -l 14 -c -fn "Terminus-30" -p "$WINNAME" | (
PICKED="$(cat)"
echo "$PICKED" | grep . || quit
LOOP="$(echo "$PROGCHOICES" | grep -F "$PICKED" | cut -d '^' -f2)"
CMD="$(echo "$PROGCHOICES" | grep -F "$PICKED" | cut -d '^' -f3)"
DMENUIDX="$(echo "$PROGCHOICES" | grep -F -n "$PICKED" | cut -d ':' -f1)"