Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Revise dw-start.sh to rely on PATH for finding and invoking an X term…
…inal emulator
  • Loading branch information
Kyle Evans committed Mar 25, 2017
commit 06097a1a81b44c7db4cb90a4e8d44f9f99cc8879
12 changes: 6 additions & 6 deletions dw-start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -83,15 +83,15 @@ DWCMD="direwolf -a 100"
#


if [ -x /usr/bin/lxterminal ]
if [ $(which lxterminal) ]
then
/usr/bin/lxterminal -t "Dire Wolf" -e "$DWCMD" &
elif [ -x /usr/bin/xterm ]
lxterminal -t "Dire Wolf" -e "$DWCMD" &
elif [ $(which xterm) ]
then
/usr/bin/xterm -bg white -fg black -e "$DWCMD" &
elif [ -x /usr/bin/x-terminal-emulator ]
xterm -bg white -fg black -e "$DWCMD" &
elif [ $(which x-terminal-emulator) ]
then
/usr/bin/x-terminal-emulator -e "$DWCMD" &
x-terminal-emulator -e "$DWCMD" &
else
echo "Did not find an X terminal emulator."
fi
Expand Down