From aa05f001d233e8b8db55ed276b5b8d32d048cd9e Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Wed, 28 Mar 2012 20:56:25 -0400 Subject: move `/' to `/.prefix/bin/' --- .prefix/bin/x-terminal-emulator | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 .prefix/bin/x-terminal-emulator (limited to '.prefix/bin/x-terminal-emulator') 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 -- cgit v1.2.3-2-g168b