diff options
| author | Fuwn <[email protected]> | 2024-05-23 14:55:29 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-05-23 14:55:29 -0700 |
| commit | 59597d761f0682aa8e024a4cd3b4cd21c0c32085 (patch) | |
| tree | f675aef7426fb2b00644ddb1a05dd806797355a9 /config.h | |
| parent | feat(dwm.c): remove window refresh rate limit (diff) | |
| download | seiwm-59597d761f0682aa8e024a4cd3b4cd21c0c32085.tar.xz seiwm-59597d761f0682aa8e024a4cd3b4cd21c0c32085.zip | |
feat(dwm.c): add systray patch
Diffstat (limited to 'config.h')
| -rw-r--r-- | config.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -8,6 +8,11 @@ /* appearance */ static unsigned int borderpx = 2; /* border pixel of windows */ static unsigned int snap = 32; /* snap pixel */ +static const unsigned int systraypinning = 0; /* 0: sloppy systray follows selected monitor, >0: pin systray to monitor X */ +static const unsigned int systrayonleft = 0; /* 0: systray in the right corner, >0: systray on left of status text */ +static const unsigned int systrayspacing = 2; /* systray spacing */ +static const int systraypinningfailfirst = 1; /* 1: if pinning fails, display systray on the first monitor, False: display systray on the last monitor*/ +static const int showsystray = 1; /* 0 means no systray */ static unsigned int gappih = 20; /* horiz inner gap between windows */ static unsigned int gappiv = 10; /* vert inner gap between windows */ static unsigned int gappoh = 10; /* horiz outer gap between windows and screen edge */ |