diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2012-05-17 23:10:36 -0400 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2012-05-17 23:10:36 -0400 |
commit | 6b9d85951e8f93bcac34b25eeb6654217bfdf5b8 (patch) | |
tree | 4cad8abfd3e7091727c0396fa2ad9ca72c35230f /.local/bin/x-terminal-emulator | |
parent | 064afade87e784ba4f51aaf71304c75c255179e6 (diff) |
clean up
Diffstat (limited to '.local/bin/x-terminal-emulator')
-rwxr-xr-x | .local/bin/x-terminal-emulator | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.local/bin/x-terminal-emulator b/.local/bin/x-terminal-emulator new file mode 100755 index 0000000..f7290b4 --- /dev/null +++ b/.local/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 |