dotfiles/bin/run_terminal
2020-12-01 21:22:27 -08:00

13 lines
264 B
Bash
Executable file

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