Ignore empty commands
parent
d922695c6f
commit
0023b1b495
|
|
@ -7,6 +7,10 @@ exec xlunch --input /etc/xlunch/entries.dsv \
|
||||||
--highlight /usr/share/icons/hicolor/128x128/apps/xlunch_highlight.png \
|
--highlight /usr/share/icons/hicolor/128x128/apps/xlunch_highlight.png \
|
||||||
--outputonly | while read LINE; do
|
--outputonly | while read LINE; do
|
||||||
|
|
||||||
|
if [ "$LINE" = "" ]; then
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
|
||||||
fbstartupnotify
|
fbstartupnotify
|
||||||
|
|
||||||
cmd="$(echo $LINE | sed -r "s/\\s.*//")"
|
cmd="$(echo $LINE | sed -r "s/\\s.*//")"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue