From 6b9d85951e8f93bcac34b25eeb6654217bfdf5b8 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Thu, 17 May 2012 23:10:36 -0400 Subject: clean up --- .local/bin/x-terminal-emulator | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 .local/bin/x-terminal-emulator (limited to '.local/bin/x-terminal-emulator') 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 -- cgit v1.2.3-54-g00ecf