# 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