diff options
| author | bakkeby <[email protected]> | 2020-08-11 10:17:02 +0200 |
|---|---|---|
| committer | bakkeby <[email protected]> | 2020-08-11 10:17:02 +0200 |
| commit | 10f4d513ec5df78db1c2b83706c208c3032e64ca (patch) | |
| tree | f4d973870d2583b491f217648ecdf8d25322f405 /patch/decorationhints.h | |
| parent | 14e148be2a3dbcfd20cbf7c8f58c1c543f63c4b7 (diff) | |
| download | dwm-flexipatch-10f4d513ec5df78db1c2b83706c208c3032e64ca.tar.gz dwm-flexipatch-10f4d513ec5df78db1c2b83706c208c3032e64ca.zip | |
Adding decoration hints patch
Diffstat (limited to 'patch/decorationhints.h')
| -rw-r--r-- | patch/decorationhints.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/patch/decorationhints.h b/patch/decorationhints.h new file mode 100644 index 0000000..3a9c641 --- /dev/null +++ b/patch/decorationhints.h @@ -0,0 +1,8 @@ +#define MWM_HINTS_FLAGS_FIELD 0 +#define MWM_HINTS_DECORATIONS_FIELD 2 +#define MWM_HINTS_DECORATIONS (1 << 1) +#define MWM_DECOR_ALL (1 << 0) +#define MWM_DECOR_BORDER (1 << 1) +#define MWM_DECOR_TITLE (1 << 3) + +static void updatemotifhints(Client *c);
\ No newline at end of file |
