Commit Briefs

c3c5623a57 André Mazzotti Bertachini

Patch to read colors from Xresources (mztbc)


ea939812ff Andre Mazzotti Bertachini

No transparency


1d46dc5b29 Andre Mazzotti Bertachini

Add alpha patch


2ce555eaaa Andre Mazzotti Bertachini

Expected anysize


b82be7b5fc Andre Mazzotti Bertachini

Rely on fontconfig


58d6849c4e Andre Mazzotti Bertachini

Change font


6e97047474 Hiltjo Posthuma

bump version to 0.9.3 (master, tags/0.9.3)


5a4666c19e Hiltjo Posthuma

add a few comments


d6c431859c Hiltjo Posthuma

Support OSC 110, 111, and 112 for resetting colors

This adds support for OSC 110, 111, and 112 escape sequences to reset the foreground, background, and cursor colors in the terminal. The changes include handling these sequences in the `strhandle` function of `st.c`, allowing applications to reset colors to their default values. The OSC sequences originated from Xterm control sequences and are now widely used in terminal applications and supported by many terminal emulators. For applications, this allows them to reset colors to default values without needing to know the colors beforehand. Signed-off-by: Ayman Bagabas <ayman.bagabas@gmail.com>


f114bcedd1 Hiltjo Posthuma

Eat up "CSI 58" sequences

This is used in the wild by systemd systemctl for example and st misinterpreted it as "blink", because it didn't know "58", then saw "5" as "blink", and then didn't know "245". This should print "foo" as normal text: printf '\e[58:5:245mfoo\n' printf '\e[58:2:50:100:200mfoo\n'


Branches

Tags

Tree

.gitignorecommits | blame
FAQcommits | blame
LEGACYcommits | blame
LICENSEcommits | blame
Makefilecommits | blame
READMEcommits | blame
TODOcommits | blame
arg.hcommits | blame
config.def.hcommits | blame
config.def.h.origcommits | blame
config.hcommits | blame
config.mkcommits | blame
patches/
st.1commits | blame
st.ccommits | blame
st.hcommits | blame
st.infocommits | blame
win.hcommits | blame
x.ccommits | blame
x.c.origcommits | blame

README

st - simple terminal
--------------------
st is a simple terminal emulator for X which sucks less.


Requirements
------------
In order to build st you need the Xlib header files.


Installation
------------
Edit config.mk to match your local setup (st is installed into
the /usr/local namespace by default).

Afterwards enter the following command to build and install st (if
necessary as root):

    make clean install


Running st
----------
If you did not install st with make clean install, you must compile
the st terminfo entry with the following command:

    tic -sx st.info

See the man page for additional details.

Credits
-------
Based on Aurélien APTEL <aurelien dot aptel at gmail dot com> bt source code.