From: Silvio Rhatto Date: Tue, 23 Dec 2025 09:05:24 +0000 (-0300) Subject: Feat: terminal: adds support for alacritty X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=02ec79182beaaa134e3bb7d1184b7d4b989ebcea;p=utils-x11.git Feat: terminal: adds support for alacritty --- 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