Wayland compositor (wlroots)
git clone https://git.lucas.co/cce-compositor.git
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,