switch default to alacritty

This commit is contained in:
Barak Michener 2021-05-07 11:25:49 -07:00
parent 1094a63a3b
commit 62b2b87c9f
2 changed files with 4 additions and 2 deletions

View file

@ -1,6 +1,8 @@
#!/usr/bin/env bash
if [ -n "`which terminator`" ]; then
if [ -n "`which alacritty`" ]; then
alacritty $@
elif [ -n "`which terminator`" ]; then
terminator $@
elif [ -n "`which gnome-terminal`" ]; then
gnome-terminal $@