11 lines
189 B
Bash
Executable file
11 lines
189 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
if [ -n "`which terminator`" ]; then
|
|
terminator
|
|
elif [ -n "`which gnome-terminal`" ]; then
|
|
gnome-terminal
|
|
elif [ -n "`which urxvt`" ]; then
|
|
urxvt
|
|
else
|
|
xterm
|
|
fi
|