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

@ -349,7 +349,7 @@ bell:
# Duration of the visual bell flash in milliseconds. A `duration` of `0` will
# disable the visual bell animation.
duration: 1000
duration: 200
# Visual bell animation color.
color: '#ffffff'

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 $@