From a1c6214cb1eb549a34b6167defa1ee9f9c5d3b25 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Sun, 13 Feb 2022 18:00:17 -0300 Subject: Fix: terminal: command lines for patched stterm --- terminal | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) 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 -- cgit v1.2.3