i3-sensible-terminal: check $TERMINAL to not call 'which' without parameters (Thanks Fandekasp)

This commit is contained in:
Michael Stapelberg
2011-11-19 14:08:18 +00:00
parent b6e859787e
commit 0ffcc00b15
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@
# distribution-specific mechanism to find the preferred terminal emulator. On
# Debian, there is the x-terminal-emulator symlink for example.
# Please don't touch the first line, though:
which $TERMINAL >/dev/null && exec $TERMINAL "$@"
[ -n "$TERMINAL" ] && which $TERMINAL >/dev/null && exec $TERMINAL "$@"
# Hopefully one of these is installed:
which xterm >/dev/null && exec xterm "$@"