all repos — st @ 44db38a5f8560564851683f80e1a649836e5885c

st (suckless terminal) config

Fix the geometry handling.
Christoph Lohmann 20h@r-36.net
commit

44db38a5f8560564851683f80e1a649836e5885c

parent

4de64fa4d24fe0164bc59dd853982a43a9c19e56

2 files changed, 5 insertions(+), 0 deletions(-)

jump to
M st.1st.1

@@ -37,6 +37,9 @@ to use when st is run.

.TP .BI \-g " geometry" defines the X11 geometry string, which will fixate the height and width of st. +The form is [=][<width>{xX}<height>][{+-}<xoffset>{+-}<yoffset>]. See +.BR XParseGeometry (3) +for further details. .TP .BI \-o " file" writes all the I/O to
M st.cst.c

@@ -3417,6 +3417,8 @@ tnew(80, 24);

xinit(); ttynew(); selinit(); + if(xw.isfixed) + cresize(xw.h, xw.w); run(); return 0;