From be87825a69b5d08f8525ff0a2e449330f087d741 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Wed, 28 Mar 2012 20:52:50 -0400 Subject: My X program aliases --- x-terminal-emulator | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 x-terminal-emulator (limited to 'x-terminal-emulator') diff --git a/x-terminal-emulator b/x-terminal-emulator new file mode 100755 index 0000000..f7290b4 --- /dev/null +++ b/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 -- cgit v1.2.3-2-g168b