From: Silvio Rhatto Date: Sun, 13 Feb 2022 21:00:17 +0000 (-0300) Subject: Fix: terminal: command lines for patched stterm X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=a1c6214cb1eb549a34b6167defa1ee9f9c5d3b25;p=utils-x11.git Fix: terminal: command lines for patched stterm --- diff --git a/terminal b/terminal index bbdbf7f..ebbc7c4 100755 --- a/terminal +++ b/terminal @@ -38,9 +38,17 @@ SH="zsh -i" # Dispatch if [ "$TERM" == "stterm" ]; then if [ ! -z "$1" ]; then - stterm $f_FONT -T $TITLE -e $SH -c "$*" + # Vanilla st + #stterm $f_FONT -T $TITLE -e $SH -c "$*" + + # Patched st from https://github.com/LukeSmithxyz/st with .Xresources support + stterm -T $TITLE -e $SH -c "$*" else - stterm $f_FONT -T $TITLE -e $SH + # Vanilla st + #stterm $f_FONT -T $TITLE -e $SH + + # Patched st from https://github.com/LukeSmithxyz/st with .Xresources support + stterm -T $TITLE -e $SH fi elif [ "$TERM" == "rxvt" ]; then if [ ! -z "$1" ]; then