summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorozpv <39195175+ozpv@users.noreply.github.com>2021-08-12 18:06:23 -0500
committerGitHub <noreply@github.com>2021-08-12 18:06:23 -0500
commit0acf0ca0e6065e6e280134a95571c1648495c1fb (patch)
tree303fa54131e9ef504f89762c3fcbda05f931925d /config.h
parent9e0ee79d7230872df5a231639241c73ccefb2b1b (diff)
anygeometry + anysize
Diffstat (limited to 'config.h')
-rw-r--r--config.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/config.h b/config.h
index e396de3..7d29209 100644
--- a/config.h
+++ b/config.h
@@ -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;