aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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