diff options
Diffstat (limited to 'dwl.c')
-rw-r--r-- | dwl.c | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -121,6 +121,14 @@ typedef struct { } Client; typedef struct { + uint32_t singular_anchor; + uint32_t anchor_triplet; + int *positive_axis; + int *negative_axis; + int margin; +} Edge; + +typedef struct { uint32_t mod; xkb_keysym_t keysym; void (*func)(const Arg *); @@ -153,14 +161,6 @@ typedef struct { } LayerSurface; typedef struct { - uint32_t singular_anchor; - uint32_t anchor_triplet; - int *positive_axis; - int *negative_axis; - int margin; -} Edge; - -typedef struct { const char *symbol; void (*arrange)(Monitor *); } Layout; |