2019-09-04 22:32:39 +00:00
|
|
|
/*
|
|
|
|
* This file contains patch control flags.
|
|
|
|
*
|
|
|
|
* In principle you should be able to mix and match any patches
|
|
|
|
* you may want. In cases where patches are logically incompatible
|
|
|
|
* one patch may take precedence over the other as noted in the
|
|
|
|
* relevant descriptions.
|
|
|
|
*/
|
|
|
|
|
2019-09-05 20:58:16 +00:00
|
|
|
/* The alpha patch adds transparency for the status bar.
|
2019-09-04 22:32:39 +00:00
|
|
|
* https://dwm.suckless.org/patches/alpha/
|
|
|
|
*/
|
2019-09-05 20:10:00 +00:00
|
|
|
#define ALPHA_PATCH 0
|
|
|
|
|
2019-09-06 21:25:32 +00:00
|
|
|
/* This patch adds new clients above the selected client, instead of always
|
|
|
|
* becoming the new master. This behaviour is known from Xmonad.
|
|
|
|
* This patch takes precedence over ATTACHASIDE_PATCH.
|
|
|
|
* https://dwm.suckless.org/patches/attachabove/
|
|
|
|
*/
|
|
|
|
#define ATTACHABOVE_PATCH 0
|
|
|
|
|
|
|
|
/* This patch adds new clients on top of the stack.
|
|
|
|
* This patch takes precedence over ATTACHBELOW_PATCH.
|
|
|
|
* https://dwm.suckless.org/patches/attachaside/
|
|
|
|
*/
|
|
|
|
#define ATTACHASIDE_PATCH 0
|
|
|
|
|
|
|
|
/* This patch adds new clients below the selected client.
|
|
|
|
* This patch takes precedence over ATTACHBOTTOM_PATCH.
|
|
|
|
* https://dwm.suckless.org/patches/attachbelow/
|
|
|
|
*/
|
|
|
|
#define ATTACHBELOW_PATCH 0
|
|
|
|
|
|
|
|
/* This patch adds new clients at the bottom of the stack.
|
|
|
|
* https://dwm.suckless.org/patches/attachbottom/
|
|
|
|
*/
|
|
|
|
#define ATTACHBOTTOM_PATCH 0
|
|
|
|
|
2019-09-06 21:37:30 +00:00
|
|
|
/* This patch will make dwm run "~/.config/dwm/autostart_blocking.sh" and
|
|
|
|
* "~/.config/dwm/autostart.sh &" before entering the handler loop. One or
|
|
|
|
* both of these files can be ommited. Note the path inside .config rather
|
|
|
|
* than the original ~/.dwm folder.
|
|
|
|
* https://dwm.suckless.org/patches/autostart/
|
2019-09-05 20:10:00 +00:00
|
|
|
*/
|
2019-09-06 21:37:30 +00:00
|
|
|
#define AUTOSTART_PATCH 0
|
2019-09-05 20:58:16 +00:00
|
|
|
|
2019-09-07 20:27:06 +00:00
|
|
|
/* The cyclelayouts patch let's you cycle through all your layouts.
|
|
|
|
* https://dwm.suckless.org/patches/cyclelayouts/
|
|
|
|
*/
|
|
|
|
#define CYCLELAYOUTS_PATCH 0
|
|
|
|
|
2019-09-06 21:47:06 +00:00
|
|
|
/* This patch shows the titles of all visible windows in the status bar
|
|
|
|
* (as opposed to showing only the selected one).
|
|
|
|
* https://dwm.suckless.org/patches/fancybar/
|
|
|
|
*/
|
|
|
|
#define FANCYBAR_PATCH 0
|
|
|
|
|
2019-09-06 22:03:04 +00:00
|
|
|
/* By default, dwm responds to _NET_ACTIVE_WINDOW client messages by setting
|
|
|
|
* the urgency bit on the named window. This patch activates the window instead.
|
|
|
|
* https://dwm.suckless.org/patches/focusonnetactive/
|
|
|
|
*/
|
|
|
|
#define FOCUSONNETACTIVE_PATCH 0
|
|
|
|
|
|
|
|
/* By default in dwm it is possible to make an application fullscreen, then use
|
|
|
|
* the focusstack keybindings to focus on other windows beneath the current window.
|
|
|
|
* It is also possible to spawn new windows (e.g. a terminal) that end up getting
|
|
|
|
* focus while the previous window remains in fullscreen. This patch ensures that
|
|
|
|
* in such scenarios the previous window loses fullscreen.
|
|
|
|
* https://github.com/bakkeby/dwm-vanitygaps/blob/master/patches/dwm-losefullscreen-6.2.diff
|
|
|
|
*/
|
|
|
|
#define LOSEFULLSCREEN_PATCH 0
|
|
|
|
|
2019-09-05 20:58:16 +00:00
|
|
|
/* The pertag patch adds nmaster, mfacts and layouts per tag rather
|
|
|
|
* than per monitor (default).
|
|
|
|
* https://dwm.suckless.org/patches/pertag/
|
|
|
|
*/
|
|
|
|
#define PERTAG_PATCH 0
|
|
|
|
|
|
|
|
/* This controls whether or not to also store bar position on a per
|
|
|
|
* tag basis, or leave it as one bar per monitor.
|
|
|
|
*/
|
2019-09-05 21:19:23 +00:00
|
|
|
#define PERTAGBAR_PATCH 0
|
|
|
|
|
2019-09-06 21:37:30 +00:00
|
|
|
/* The systray patch adds systray for the status bar.
|
|
|
|
* https://dwm.suckless.org/patches/systray/
|
|
|
|
*/
|
|
|
|
#define SYSTRAY_PATCH 0
|
|
|
|
|
2019-09-05 21:59:13 +00:00
|
|
|
/* This patch allows you to move all visible windows on a monitor to an adjacent monitor.
|
|
|
|
* https://github.com/bakkeby/dwm-vanitygaps/blob/master/patches/dwm-tagallmon-6.2.diff
|
|
|
|
*/
|
|
|
|
#define TAGALLMON_PATCH 0
|
|
|
|
|
2019-09-05 21:39:25 +00:00
|
|
|
/* If you try to send a fullscreen window to an adjacent monitor using tagmon then
|
|
|
|
* the window is moved behind the scenes, but it remains in fullscreen on the original
|
|
|
|
* monitor until you exit fullscreen view (at which point it will appear on the adjacent
|
|
|
|
* monitor). This patch allows a fullscreen window to be moved to an adjacent monitor
|
|
|
|
* while remaining in fullscreen.
|
|
|
|
* https://github.com/bakkeby/dwm-vanitygaps/blob/master/patches/dwm-tagmonfixfs-6.2.diff
|
|
|
|
*/
|
|
|
|
#define TAGMONFIXFS_PATCH 0
|
2019-09-05 21:27:33 +00:00
|
|
|
|
2019-09-05 21:59:13 +00:00
|
|
|
/* This patch allows you to swap all visible windows on one monitor with those of an
|
|
|
|
* adjacent monitor.
|
|
|
|
* https://github.com/bakkeby/dwm-vanitygaps/blob/master/patches/dwm-tagswapmon-6.2.diff
|
|
|
|
*/
|
|
|
|
#define TAGSWAPMON_PATCH 0
|
|
|
|
|
2019-09-05 21:27:33 +00:00
|
|
|
/* This patch allows you to toggle fullscreen on and off using a single shortcut key.
|
|
|
|
* https://github.com/bakkeby/dwm-vanitygaps/blob/master/patches/dwm-togglefullscreen-6.2.diff
|
|
|
|
*/
|
2019-09-05 21:39:25 +00:00
|
|
|
#define TOGGLEFULLSCREEN_PATCH 0
|
2019-09-05 21:27:33 +00:00
|
|
|
|
2019-09-05 21:19:23 +00:00
|
|
|
/* The zoomswap patch allows a master and a stack window to swap places
|
|
|
|
* rather than every window on the screen changing position.
|
|
|
|
* https://dwm.suckless.org/patches/zoomswap/
|
|
|
|
*/
|
|
|
|
#define ZOOMSWAP_PATCH 0
|