2 # This script tries to exec a terminal emulator by trying some known terminal
5 # Distributions/packagers should enhance this script with a
6 # distribution-specific mechanism to find the preferred terminal emulator. On
7 # Debian, there is the x-terminal-emulator symlink for example.
8 # Please don't touch the first line, though:
9 which $TERMINAL >/dev/null && exec $TERMINAL "$@"
11 # Hopefully one of these is installed:
12 which xterm >/dev/null && exec xterm "$@"
13 which urxvt >/dev/null && exec urxvt "$@"
14 which rxvt >/dev/null && exec rxvt "$@"
15 which roxterm >/dev/null && exec roxterm "$@"