From 14b3f03b2fef52b6911841312f43e99fbc05e510 Mon Sep 17 00:00:00 2001 From: Igor Gevka Date: Sun, 16 Feb 2020 15:03:10 -0800 Subject: Implements a system tray for dwm. Original author: Jan Christoph Ebersbach , inspired by http://code.google.com/p/dwm-plus URL: http://dwm.suckless.org/patches/systray dwm 6.2 port by Igor Gevka --- config.def.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'config.def.h') diff --git a/config.def.h b/config.def.h index 1c0b587..2d824d1 100644 --- a/config.def.h +++ b/config.def.h @@ -3,6 +3,10 @@ /* 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 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[] = { "monospace:size=10" }; -- cgit v1.2.3