mirror of
https://github.com/bakkeby/dwm-flexipatch
synced 2024-11-05 00:00:18 +00:00
87 lines
1.2 KiB
C
87 lines
1.2 KiB
C
/* Patches */
|
|
|
|
#if ALPHA_PATCH
|
|
#include "alpha.h"
|
|
#endif
|
|
|
|
#if ATTACHABOVE_PATCH || ATTACHASIDE_PATCH || ATTACHBELOW_PATCH || ATTACHBOTTOM_PATCH
|
|
#include "attachx.h"
|
|
#endif
|
|
|
|
#if AUTOSTART_PATCH
|
|
#include "autostart.h"
|
|
#endif
|
|
|
|
#if CFACTS_PATCH
|
|
#include "cfacts.h"
|
|
#endif
|
|
|
|
#if CYCLELAYOUTS_PATCH
|
|
#include "cyclelayouts.h"
|
|
#endif
|
|
|
|
#if ROTATESTACK_PATCH
|
|
#include "rotatestack.h"
|
|
#endif
|
|
|
|
#if SYSTRAY_PATCH
|
|
#include "systray.h"
|
|
#endif
|
|
|
|
#if TAGALLMON_PATCH
|
|
#include "tagallmon.h"
|
|
#endif
|
|
|
|
#if TAGSWAPMON_PATCH
|
|
#include "tagswapmon.h"
|
|
#endif
|
|
|
|
#if TOGGLEFULLSCREEN_PATCH
|
|
#include "togglefullscreen.h"
|
|
#endif
|
|
|
|
#if VANITYGAPS_PATCH
|
|
#include "vanitygaps.h"
|
|
#endif
|
|
|
|
#if ZOOMSWAP_PATCH
|
|
#include "zoomswap.h"
|
|
#endif
|
|
|
|
/* Layouts */
|
|
|
|
#if BSTACK_LAYOUT
|
|
#include "bstack.h"
|
|
#endif
|
|
|
|
#if BSTACKHORIZ_LAYOUT
|
|
#include "bstackhoriz.h"
|
|
#endif
|
|
|
|
#if DECK_LAYOUT
|
|
#include "deck.h"
|
|
#endif
|
|
|
|
#if FIBONACCI_DWINDLE_LAYOUT || FIBONACCI_SPIRAL_LAYOUT
|
|
#include "fibonacci.h"
|
|
#endif
|
|
|
|
#if GAPPLESSGRID_LAYOUT
|
|
#include "gapplessgrid.h"
|
|
#endif
|
|
|
|
#if GRIDMODE_LAYOUT
|
|
#include "grid.h"
|
|
#endif
|
|
|
|
#if HORIZGRID_LAYOUT
|
|
#include "horizgrid.h"
|
|
#endif
|
|
|
|
#if MONOCLE_LAYOUT
|
|
#include "monocle.h"
|
|
#endif
|
|
|
|
#if TILE_LAYOUT
|
|
#include "tile.h"
|
|
#endif |