small update

This commit is contained in:
Barak Michener 2019-06-16 19:24:06 -07:00
parent 4632b5d39b
commit b7f03054d4
3 changed files with 23 additions and 6 deletions

View file

@ -1,11 +1,11 @@
#!/usr/bin/env bash
if [ -n "`which terminator`" ]; then
terminator
elif [ -n "`which gnome-terminal`" ]; then
gnome-terminal
if [ -n "`which gnome-terminal`" ]; then
gnome-terminal $@
elif [ -n "`which terminator`" ]; then
terminator $@
elif [ -n "`which urxvt`" ]; then
urxvt
urxvt $@
else
xterm
xterm $@
fi