2011-09-25 13:45:51 -04:00
|
|
|
#!/bin/sh
|
2011-12-28 18:01:49 -05:00
|
|
|
#
|
|
|
|
# This code is released in public domain by Han Boetes <han@mijncomputer.nl>
|
|
|
|
#
|
2011-09-25 13:45:51 -04:00
|
|
|
# This script tries to exec a terminal emulator by trying some known terminal
|
|
|
|
# emulators.
|
|
|
|
#
|
2014-11-06 13:56:32 -05:00
|
|
|
# We welcome patches that add distribution-specific mechanisms to find the
|
|
|
|
# preferred terminal emulator. On Debian, there is the x-terminal-emulator
|
|
|
|
# symlink for example.
|
2016-02-09 16:33:37 -05:00
|
|
|
for terminal in "$TERMINAL" x-terminal-emulator urxvt rxvt termit terminator Eterm aterm xterm gnome-terminal roxterm xfce4-terminal termite lxterminal mate-terminal terminology st; do
|
2015-11-24 08:15:31 -05:00
|
|
|
if command -v "$terminal" > /dev/null 2>&1; then
|
|
|
|
exec "$terminal" "$@"
|
2011-12-28 18:01:49 -05:00
|
|
|
fi
|
|
|
|
done
|
2015-03-26 04:21:40 -04:00
|
|
|
|
|
|
|
i3-nagbar -m 'i3-sensible-terminal could not find a terminal emulator. Please install one.'
|