update for new tmux

This commit is contained in:
Barak Michener 2019-06-07 13:40:00 -07:00
parent 4fb0ea1292
commit 405541f534
3 changed files with 11 additions and 15 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