diff options
author | uint23 <[email protected]> | 2025-04-25 23:08:02 +0100 |
---|---|---|
committer | uint23 <[email protected]> | 2025-04-25 23:08:02 +0100 |
commit | fd7b18b3c20bc4e2685cd0d6ac14d4b87ba89cf2 (patch) | |
tree | 9ff4e9a8c11c4302be94232a89664bb4085dfc67 /src/defs.h | |
parent | c82d8ac61dbd323ee3ac5eb6e730c691927a14cc (diff) |
starting to add custom config
added config struct
added sxrc config file
~ master_width is now an int
Diffstat (limited to 'src/defs.h')
-rw-r--r-- | src/defs.h | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -103,6 +103,18 @@ typedef struct Client{ } Client; typedef struct { + uint gaps; + uint border_width; + ulong border_foc_col; + ulong border_ufoc_col; + ulong border_swap_col; + uint master_width; + uint resize_master_amt; + uint snap_distance; + Binding *binds; +} Config; + +typedef struct { int x, y; uint w, h; } Monitor; |