2011-09-25 19:45:51 +02:00
|
|
|
#!/bin/sh
|
2011-12-29 00:01:49 +01:00
|
|
|
#
|
|
|
|
# This code is released in public domain by Han Boetes <han@mijncomputer.nl>
|
|
|
|
#
|
2011-09-25 19:45:51 +02:00
|
|
|
# This script tries to exec a terminal emulator by trying some known terminal
|
|
|
|
# emulators.
|
|
|
|
#
|
|
|
|
# Distributions/packagers should enhance this script with a
|
|
|
|
# distribution-specific mechanism to find the preferred terminal emulator. On
|
|
|
|
# Debian, there is the x-terminal-emulator symlink for example.
|
2012-08-02 15:20:17 +02:00
|
|
|
for terminal in $TERMINAL urxvt rxvt terminator Eterm aterm xterm gnome-terminal roxterm xfce4-terminal; do
|
2014-10-23 23:05:01 +02:00
|
|
|
if command -v $terminal > /dev/null 2>&1; then
|
2011-12-29 00:01:49 +01:00
|
|
|
exec $terminal "$@"
|
|
|
|
fi
|
|
|
|
done
|