2018-03-27 22:19:00 +02:00
|
|
|
#!/bin/sh
|
|
|
|
# Try to find a terminal emulator that's installed and run it.
|
|
|
|
|
|
|
|
for terminal in x-terminal-emulator gnome-terminal xfce4-terminal konsole urxvt rxvt termit terminator Eterm aterm roxterm termite lxterminal mate-terminal terminology st xterm; do
|
2018-08-28 03:25:12 +02:00
|
|
|
# bogus warning from ShellCheck < 0.5.0
|
|
|
|
# shellcheck disable=SC2039
|
|
|
|
if type "$terminal" >/dev/null 2>&1 ; then
|
2018-03-27 22:19:00 +02:00
|
|
|
exec "$terminal"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2018-08-28 03:25:12 +02:00
|
|
|
echo "ERROR: No suitable terminal found." >&2
|