awesome-client: use readline and no backslash

Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Julien Danjou 2009-04-30 00:27:03 +02:00
parent 4f1eac6fa5
commit b38ebbeac1
1 changed files with 8 additions and 3 deletions

View File

@ -3,9 +3,14 @@
# rlwrap provides readline to stuff which doesn't know readline by itself
RLWRAP=`which rlwrap 2>/dev/null`
if [ "$RLWRAP" != "" ] && [ "$A_RERUN" = "" ]
if [ "$RLWRAP" != "" ]
then
A_RERUN="no" exec $RLWRAP $0
if [ "$A_RERUN" = "" ]
then
A_RERUN="no" exec $RLWRAP $0
fi
else
USE_READLINE="-e"
fi
DBUS_SEND=dbus-send
@ -25,7 +30,7 @@ a_dbus_send()
$DBUS_METHOD string:"$1" | tail -n +2
}
while read -p "awesome# " line
while read ${USE_READLINE} -r -p "awesome# " line
do
a_dbus_send "$line"
done