This commit is contained in:
Kyle Evans 2017-03-25 04:17:16 +00:00 committed by GitHub
commit 541578106b
1 changed files with 6 additions and 6 deletions

View File

@ -83,15 +83,15 @@ DWCMD="direwolf -a 100"
# #
if [ -x /usr/bin/lxterminal ] if [ $(which lxterminal) ]
then then
/usr/bin/lxterminal -t "Dire Wolf" -e "$DWCMD" & lxterminal -t "Dire Wolf" -e "$DWCMD" &
elif [ -x /usr/bin/xterm ] elif [ $(which xterm) ]
then then
/usr/bin/xterm -bg white -fg black -e "$DWCMD" & xterm -bg white -fg black -e "$DWCMD" &
elif [ -x /usr/bin/x-terminal-emulator ] elif [ $(which x-terminal-emulator) ]
then then
/usr/bin/x-terminal-emulator -e "$DWCMD" & x-terminal-emulator -e "$DWCMD" &
else else
echo "Did not find an X terminal emulator." echo "Did not find an X terminal emulator."
fi fi