diff options
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -140,6 +140,12 @@ const char *colorname[] = { /* + * Whether to use pixel geometry or cell geometry + */ + +static Geometry geometry = CellGeometry; + +/* * Default colors (colorname index) * foreground, background, cursor, reverse cursor */ @@ -149,6 +155,13 @@ unsigned int defaultcs = 258; unsigned int defaultrcs = 257; /* + * Default width and height (including borders!) + */ + +static unsigned int width = 564; +static unsigned int height = 364; + +/* * Default shape of cursor * 2: Block ("█") * 4: Underline ("_") |