dotfiles/bin/run_terminal

9 lines
129 B
Bash
Executable file

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