diff options
author | eug-vs <eugene@eug-vs.xyz> | 2022-01-20 01:39:50 +0300 |
---|---|---|
committer | eug-vs <eugene@eug-vs.xyz> | 2022-01-20 01:40:01 +0300 |
commit | c5298ee42bbf9dbec0b8d9dc2f57b1f260ea2b45 (patch) | |
tree | 8afcca54b56ac492ce81118938091d460006b818 /config.def.h | |
parent | 4745e69489042e1b33f278809e1f9e831d6704b1 (diff) | |
download | dwm-c5298ee42bbf9dbec0b8d9dc2f57b1f260ea2b45.tar.gz |
patch: systray
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h index b7d6205..2d2af1a 100644 --- a/config.def.h +++ b/config.def.h @@ -3,6 +3,11 @@ /* appearance */ static const unsigned int borderpx = 1; /* border pixel of 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 topbar = 1; /* 0 means bottom bar */ static const char *fonts[] = { "fira code nerd font:pixelsize=12:antialias=true:autohint=true" }; |