aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2022-02-13 18:00:17 -0300
committerSilvio Rhatto <rhatto@riseup.net>2022-02-13 18:00:17 -0300
commita1c6214cb1eb549a34b6167defa1ee9f9c5d3b25 (patch)
treee8faf64800b25a9795994770ffcab4ee66bc42d2
parentbee0808708523cda284040a612e7d896deff6f60 (diff)
downloadutils-x11-a1c6214cb1eb549a34b6167defa1ee9f9c5d3b25.tar.gz
utils-x11-a1c6214cb1eb549a34b6167defa1ee9f9c5d3b25.tar.bz2
Fix: terminal: command lines for patched stterm
-rwxr-xr-xterminal12
1 files 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