git.lucas.co / cce-compositor
Wayland compositor (wlroots)
git clone https://git.lucas.co/cce-compositor.git

commitcd3b3041153012b95bd57a0a71d5ae0264b20af4
parent5dd55f0060
authorIsaac Freund <[email protected]>
date2020-04-08 23:22
Remove stray default values

 src/config.zig | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/config.zig b/src/config.zig
index 4159203..b88fbb8 100644
--- a/src/config.zig
+++ b/src/config.zig
@@ -8,10 +8,10 @@ pub const Config = struct {
     const Self = @This();
 
     /// Width of borders in pixels
-    border_width: u32 = 2,
+    border_width: u32,
 
     /// Amount of view padding in pixels
-    view_padding: u32 = 10,
+    view_padding: u32,
 
     const Keybind = struct {
         keysym: c.xkb_keysym_t,