diff options
| author | ozpv <39195175+ozpv@users.noreply.github.com> | 2021-08-12 18:06:23 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-12 18:06:23 -0500 |
| commit | 0acf0ca0e6065e6e280134a95571c1648495c1fb (patch) | |
| tree | 303fa54131e9ef504f89762c3fcbda05f931925d /config.h | |
| parent | 9e0ee79d7230872df5a231639241c73ccefb2b1b (diff) | |
anygeometry + anysize
Diffstat (limited to 'config.h')
| -rw-r--r-- | config.h | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -153,6 +153,12 @@ unsigned int bg = 0, bgUnfocused = 0; static unsigned int cursorshape = 2; /* + * Whether to use pixel geometry or cell geometry + */ + +static Geometry geometry = CellGeometry; + +/* * Default columns and rows numbers */ @@ -160,6 +166,13 @@ static unsigned int cols = 80; static unsigned int rows = 24; /* + * Default width and height (including borders!) + */ + +static unsigned int width = 564; +static unsigned int height = 364; + +/* * Default colour and shape of the mouse cursor */ static unsigned int mouseshape = XC_xterm; |
