aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xterminal6
1 files changed, 6 insertions, 0 deletions
diff --git a/terminal b/terminal
index ebbc7c4..abd4cd9 100755
--- a/terminal
+++ b/terminal
@@ -74,4 +74,10 @@ elif [ "$TERM" == "xterm" ]; then
else
xterm -u8 $FN_FONT -geometry $GEOMETRY -title $TITLE -e $SH
fi
+elif [ "$TERM" == "alacritty" ]; then
+ if [ ! -z "$1" ]; then
+ alacritty -e $SH -c "$*"
+ else
+ alacritty
+ fi
fi