Fix the geometry handling.

This commit is contained in:
Christoph Lohmann 2013-04-13 15:24:26 +02:00
parent 4de64fa4d2
commit 44db38a5f8
2 changed files with 5 additions and 0 deletions

3
st.1
View File

@ -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

2
st.c
View File

@ -3417,6 +3417,8 @@ run:
xinit();
ttynew();
selinit();
if(xw.isfixed)
cresize(xw.h, xw.w);
run();
return 0;