qubes-run-terminal 396 B

1234567891011
  1. #!/bin/sh
  2. # Try to find a terminal emulator that's installed and run it.
  3. 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
  4. if which $terminal >/dev/null 2>&1 ; then
  5. exec "$terminal"
  6. fi
  7. done
  8. echo "ERROR: No suitable terminal found." > /dev/stderr