diff options
Diffstat (limited to '.prefix/bin/x-terminal-emulator')
-rwxr-xr-x | .prefix/bin/x-terminal-emulator | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.prefix/bin/x-terminal-emulator b/.prefix/bin/x-terminal-emulator new file mode 100755 index 0000000..f7290b4 --- /dev/null +++ b/.prefix/bin/x-terminal-emulator @@ -0,0 +1,10 @@ +#!/bin/sh +if [ -x "`which emacsterm`" ]; then + emacsterm $@ +elif [ -x "`which urxvt`" ]; then + urxvt $@ +elif [ -x "`which gnome-terminal`" ]; then + gnome-terminal $@ +elif [ -x "`which xterm`"]; then + xterm $@ +fi |