dotfiles/bin/run_terminal

11 lines
181 B
Bash
Executable file

#!/bin/bash
if [ -n "`which terminator`" ]; then
terminator
elif [ -n "`which gnome-terminal`" ]; then
gnome-terminal
elif [ -n "`which urxvt`" ]; then
urxvt
else
xterm
fi