genericize terminal

This commit is contained in:
Barak Michener 2013-04-22 16:59:06 -04:00
parent 5cfc43c70d
commit 662478f09d
3 changed files with 11 additions and 2 deletions

9
bin/run_terminal Executable file
View file

@ -0,0 +1,9 @@
#!/bin/bash
if [ -n "`which gnome-terminal`" ]; then
gnome-terminal
elif [ -n "`which urxvt`" ]; then
urxvt
else
xterm
fi