diff options
-rw-r--r-- | st.1 | 3 | ||||
-rw-r--r-- | st.c | 2 |
2 files changed, 5 insertions, 0 deletions
@@ -37,6 +37,9 @@ to use when st is run. | |||
37 | .TP | 37 | .TP |
38 | .BI \-g " geometry" | 38 | .BI \-g " geometry" |
39 | defines the X11 geometry string, which will fixate the height and width of st. | 39 | defines the X11 geometry string, which will fixate the height and width of st. |
40 | The form is [=][<width>{xX}<height>][{+-}<xoffset>{+-}<yoffset>]. See | ||
41 | .BR XParseGeometry (3) | ||
42 | for further details. | ||
40 | .TP | 43 | .TP |
41 | .BI \-o " file" | 44 | .BI \-o " file" |
42 | writes all the I/O to | 45 | writes all the I/O to |
@@ -3417,6 +3417,8 @@ run: | |||
3417 | xinit(); | 3417 | xinit(); |
3418 | ttynew(); | 3418 | ttynew(); |
3419 | selinit(); | 3419 | selinit(); |
3420 | if(xw.isfixed) | ||
3421 | cresize(xw.h, xw.w); | ||
3420 | run(); | 3422 | run(); |
3421 | 3423 | ||
3422 | return 0; | 3424 | return 0; |