aboutsummaryrefslogtreecommitdiff
path: root/src/root.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/root.zig')
-rw-r--r--src/root.zig5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/root.zig b/src/root.zig
index 9700827..bf714b5 100644
--- a/src/root.zig
+++ b/src/root.zig
@@ -34,6 +34,9 @@ pub const Root = struct {
/// Percentage of the total screen that the master section takes up.
master_factor: f64,
+ /// Width of borders in pixels
+ border_width: u32,
+
/// Number of pending configures sent in the current transaction.
/// A value of 0 means there is no current transaction.
pending_configures: u32,
@@ -63,6 +66,8 @@ pub const Root = struct {
self.master_factor = 0.6;
+ self.border_width = 4;
+
self.pending_configures = 0;
self.transaction_timer = null;