diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2012-03-28 20:56:25 -0400 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2012-03-28 20:56:25 -0400 |
commit | aa05f001d233e8b8db55ed276b5b8d32d048cd9e (patch) | |
tree | b66a7ef8e1095ac7ea78f154a893c791419e5bcc /.prefix/bin/x-terminal-emulator | |
parent | 62a59e423edd0b6277ddea8c60de9e3f4a33fca1 (diff) |
move `/' to `/.prefix/bin/'
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 |