]> gitweb.fluxo.info Git - utils-x11.git/commitdiff
Fix: terminal: command lines for patched stterm
authorSilvio Rhatto <rhatto@riseup.net>
Sun, 13 Feb 2022 21:00:17 +0000 (18:00 -0300)
committerSilvio Rhatto <rhatto@riseup.net>
Sun, 13 Feb 2022 21:00:17 +0000 (18:00 -0300)
terminal

index bbdbf7f8847176bab20c639a797b12575395ff11..ebbc7c40c77c1a2d1ed0564535d4ff05b93a2f58 100755 (executable)
--- 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