aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeonardo Hernández Hernández <leohdz172@protonmail.com>2022-04-05 22:15:46 -0500
committerLeonardo Hernández Hernández <leohdz172@protonmail.com>2022-04-05 22:15:46 -0500
commitaf741e586b80440b59b61e8fdc22c69fb7e8a457 (patch)
tree18dc8965ed30eaebe2e456a44b1e1377a3f2f4b9
parent02ac9378c4fb40969db6e897605016bbaf422961 (diff)
typedefs: abc
-rw-r--r--dwl.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/dwl.c b/dwl.c
index 816eaa5..424485f 100644
--- a/dwl.c
+++ b/dwl.c
@@ -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;