diff options
author | eug-vs <eug-vs@keemail.me> | 2021-03-30 10:25:06 +0300 |
---|---|---|
committer | eug-vs <eug-vs@keemail.me> | 2021-03-30 10:25:06 +0300 |
commit | 337718ed50ad86ddf70aad47058685860ff26b39 (patch) | |
tree | b5ac740f654556ccf62709f4b3b5f157e0de738f /config.def.h | |
parent | 3460c7e52a4c54a287887cc9ece7761ab09fb3cd (diff) | |
download | dwm-337718ed50ad86ddf70aad47058685860ff26b39.tar.gz |
feat: apply systray patch
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/config.def.h b/config.def.h index 5609abd..cdf9716 100644 --- a/config.def.h +++ b/config.def.h @@ -4,6 +4,11 @@ static const unsigned int borderpx = 1; /* border pixel of windows */ static const unsigned int gappx = 28; /* gaps between windows */ static const 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 const int showbar = 1; /* 0 means no bar */ static const int horizpadbar = 6; /* horizontal padding for statusbar */ static const int vertpadbar = 16; /* vertical padding for statusbar */ @@ -124,4 +129,3 @@ static Button buttons[] = { { ClkTagBar, MODKEY, Button1, tag, {0} }, { ClkTagBar, MODKEY, Button3, toggletag, {0} }, }; - |