awesome-client: do not send empty requests
This commit is contained in:
parent
410a6e5bb2
commit
7b233f3d37
|
@ -54,6 +54,9 @@ if [ "$ISATTY" = 0 ]
|
|||
then
|
||||
while $READ_CMD -p "awesome# " -r line
|
||||
do
|
||||
if [ "$line" = "" ]; then
|
||||
continue
|
||||
fi
|
||||
a_dbus_send "$line"
|
||||
done
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue