i3-sensible-terminal: check $TERMINAL to not call 'which' without parameters (Thanks Fandekasp)
This commit is contained in:
parent
b6e859787e
commit
0ffcc00b15
|
@ -11,7 +11,7 @@
|
||||||
-# distribution-specific mechanism to find the preferred terminal emulator. On
|
-# distribution-specific mechanism to find the preferred terminal emulator. On
|
||||||
-# Debian, there is the x-terminal-emulator symlink for example.
|
-# Debian, there is the x-terminal-emulator symlink for example.
|
||||||
-# Please don't touch the first line, though:
|
-# Please don't touch the first line, though:
|
||||||
which $TERMINAL >/dev/null && exec $TERMINAL "$@"
|
[ -n "$TERMINAL" ] && which $TERMINAL >/dev/null && exec $TERMINAL "$@"
|
||||||
|
|
||||||
+# Debian-specific: use x-terminal-emulator
|
+# Debian-specific: use x-terminal-emulator
|
||||||
+which x-terminal-emulator >/dev/null && exec x-terminal-emulator "$@"
|
+which x-terminal-emulator >/dev/null && exec x-terminal-emulator "$@"
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
# distribution-specific mechanism to find the preferred terminal emulator. On
|
# distribution-specific mechanism to find the preferred terminal emulator. On
|
||||||
# Debian, there is the x-terminal-emulator symlink for example.
|
# Debian, there is the x-terminal-emulator symlink for example.
|
||||||
# Please don't touch the first line, though:
|
# 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:
|
# Hopefully one of these is installed:
|
||||||
which xterm >/dev/null && exec xterm "$@"
|
which xterm >/dev/null && exec xterm "$@"
|
||||||
|
|
Loading…
Reference in New Issue