summaryrefslogtreecommitdiff
path: root/.prefix/bin/x-terminal-emulator
blob: f7290b46e82848ba6850aa6b256cd5bbcc00da85 (plain)
1
2
3
4
5
6
7
8
9
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