2019-09-04 22:16:39 +00:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
|
|
|
|
|
|
|
/* appearance */
|
2020-04-01 05:55:00 +00:00
|
|
|
#if ROUNDED_CORNERS_PATCH
|
|
|
|
static const unsigned int borderpx = 0; /* border pixel of windows */
|
|
|
|
static const int corner_radius = 10;
|
|
|
|
#else
|
2019-09-15 22:32:28 +00:00
|
|
|
static const unsigned int borderpx = 1; /* border pixel of windows */
|
2020-04-01 05:55:00 +00:00
|
|
|
#endif // ROUNDED_CORNERS_PATCH
|
2019-09-15 22:32:28 +00:00
|
|
|
static const unsigned int snap = 32; /* snap pixel */
|
2019-09-08 22:18:47 +00:00
|
|
|
#if VANITYGAPS_PATCH
|
2019-09-15 22:32:28 +00:00
|
|
|
static const unsigned int gappih = 20; /* horiz inner gap between windows */
|
|
|
|
static const unsigned int gappiv = 10; /* vert inner gap between windows */
|
2019-10-06 22:46:23 +00:00
|
|
|
static const unsigned int gappoh = 10; /* horiz outer gap between windows and screen edge */
|
|
|
|
static const unsigned int gappov = 30; /* vert outer gap between windows and screen edge */
|
2019-09-15 22:32:28 +00:00
|
|
|
static const int smartgaps = 0; /* 1 means no outer gap when there is only one window */
|
2019-09-08 22:18:47 +00:00
|
|
|
#endif // VANITYGAPS_PATCH
|
2019-10-01 22:03:21 +00:00
|
|
|
#if HOLDBAR_PATCH
|
|
|
|
static const int showbar = 0; /* 0 means no bar */
|
|
|
|
#else
|
2019-09-15 22:32:28 +00:00
|
|
|
static const int showbar = 1; /* 0 means no bar */
|
2019-10-01 22:03:21 +00:00
|
|
|
#endif // HOLDBAR_PATCH
|
2019-09-15 22:32:28 +00:00
|
|
|
static const int topbar = 1; /* 0 means bottom bar */
|
2020-06-21 18:04:56 +00:00
|
|
|
#if BAR_HEIGHT_PATCH
|
|
|
|
static const int bar_height = 0; /* 0 means derive from font, >= 1 explicit height */
|
|
|
|
#endif // BAR_HEIGHT_PATCH
|
2020-01-24 09:47:13 +00:00
|
|
|
#if BARPADDING_PATCH
|
|
|
|
static const int vertpad = 10; /* vertical padding of bar */
|
|
|
|
static const int sidepad = 10; /* horizontal padding of bar */
|
|
|
|
#endif // BARPADDING_PATCH
|
2019-09-15 22:32:28 +00:00
|
|
|
#if FOCUSONCLICK_PATCH
|
|
|
|
static const int focusonwheel = 0;
|
|
|
|
#endif // FOCUSONCLICK_PATCH
|
2020-06-21 13:33:29 +00:00
|
|
|
#if FLOATPOS_PATCH
|
|
|
|
static int floatposgrid_x = 5; /* float grid columns */
|
|
|
|
static int floatposgrid_y = 5; /* float grid rows */
|
|
|
|
#endif // FLOATPOS_PATCH
|
2019-09-07 21:29:37 +00:00
|
|
|
#if STATUSPADDING_PATCH
|
2019-09-15 22:32:28 +00:00
|
|
|
static const int horizpadbar = 2; /* horizontal padding for statusbar */
|
|
|
|
static const int vertpadbar = 0; /* vertical padding for statusbar */
|
2019-09-07 21:29:37 +00:00
|
|
|
#endif // STATUSPADDING_PATCH
|
2020-06-10 09:52:35 +00:00
|
|
|
#if STATICSTATUS_PATCH && !STATUSALLMONS_PATCH
|
|
|
|
static const int statmonval = 0;
|
|
|
|
#endif // STATICSTATUS_PATCH
|
2020-06-24 14:36:51 +00:00
|
|
|
#if STATUSBUTTON_PATCH
|
|
|
|
static const char buttonbar[] = "<O>";
|
|
|
|
#endif // STATUSBUTTON_PATCH
|
2019-09-05 20:10:00 +00:00
|
|
|
#if SYSTRAY_PATCH
|
|
|
|
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 */
|
|
|
|
#endif // SYSTRAY_PATCH
|
2019-10-03 20:58:58 +00:00
|
|
|
#if ONLYQUITONEMPTY_PATCH
|
|
|
|
static const int quit_empty_window_count = 2; /* only allow dwm to quit if no windows are open, value here represents number of deamons */
|
|
|
|
#endif // ONLYQUITONEMPTY_PATCH
|
2019-10-24 05:35:00 +00:00
|
|
|
#if EXTRABAR_PATCH
|
|
|
|
static const char statussep = ';'; /* separator between status bars */
|
|
|
|
#endif // EXTRABAR_PATCH
|
2020-06-11 17:42:00 +00:00
|
|
|
#if PANGO_PATCH
|
|
|
|
static const char font[] = "monospace 10";
|
|
|
|
#else
|
2019-09-15 22:32:28 +00:00
|
|
|
static const char *fonts[] = { "monospace:size=10" };
|
2020-06-11 17:42:00 +00:00
|
|
|
#endif // PANGO_PATCH
|
2019-09-15 22:32:28 +00:00
|
|
|
static const char dmenufont[] = "monospace:size=10";
|
2019-09-15 20:45:22 +00:00
|
|
|
|
|
|
|
static char normfgcolor[] = "#bbbbbb";
|
|
|
|
static char normbgcolor[] = "#222222";
|
2020-02-11 17:31:11 +00:00
|
|
|
#if !VTCOLORS_PATCH
|
2019-09-15 20:45:22 +00:00
|
|
|
static char normbordercolor[] = "#444444";
|
|
|
|
#if FLOAT_BORDER_COLOR_PATCH
|
2019-09-15 21:33:43 +00:00
|
|
|
static char normfloatcolor[] = "#db8fd9";
|
2019-09-15 20:45:22 +00:00
|
|
|
#endif // FLOAT_BORDER_COLOR_PATCH
|
2020-02-11 17:31:11 +00:00
|
|
|
#endif // !VTCOLORS_PATCH
|
2019-09-15 20:45:22 +00:00
|
|
|
|
|
|
|
static char selfgcolor[] = "#eeeeee";
|
|
|
|
static char selbgcolor[] = "#005577";
|
2020-02-11 17:31:11 +00:00
|
|
|
#if !VTCOLORS_PATCH
|
2019-09-15 20:45:22 +00:00
|
|
|
static char selbordercolor[] = "#005577";
|
|
|
|
#if FLOAT_BORDER_COLOR_PATCH
|
2019-09-15 21:33:43 +00:00
|
|
|
static char selfloatcolor[] = "#005577";
|
2019-09-15 20:45:22 +00:00
|
|
|
#endif // FLOAT_BORDER_COLOR_PATCH
|
|
|
|
|
2019-10-06 22:46:23 +00:00
|
|
|
#if STATUSCOLORS_PATCH
|
|
|
|
static char warnfgcolor[] = "#000000";
|
|
|
|
static char warnbgcolor[] = "#ffff00";
|
|
|
|
static char warnbordercolor[] = "#ff0000";
|
|
|
|
#if FLOAT_BORDER_COLOR_PATCH
|
|
|
|
static char warnfloatcolor[] = "#ffffff";
|
|
|
|
#endif // FLOAT_BORDER_COLOR_PATCH
|
|
|
|
#endif // STATUSCOLORS_PATCH
|
|
|
|
|
|
|
|
#if URGENTBORDER_PATCH || STATUSCOLORS_PATCH
|
2019-09-15 22:13:03 +00:00
|
|
|
static char urgfgcolor[] = "#000000";
|
|
|
|
static char urgbgcolor[] = "#000000";
|
|
|
|
static char urgbordercolor[] = "#ff0000"; // NB: patch only works with border color for now
|
|
|
|
#if FLOAT_BORDER_COLOR_PATCH
|
|
|
|
static char urgfloatcolor[] = "#000000";
|
|
|
|
#endif // FLOAT_BORDER_COLOR_PATCH
|
2019-10-06 22:46:23 +00:00
|
|
|
#endif // URGENTBORDER_PATCH // STATUSCOLORS_PATCH
|
2019-09-15 22:13:03 +00:00
|
|
|
|
2019-09-15 20:45:22 +00:00
|
|
|
#if AWESOMEBAR_PATCH
|
|
|
|
static char hidfgcolor[] = "#005577";
|
|
|
|
static char hidbgcolor[] = "#222222";
|
|
|
|
static char hidbordercolor[] = "#005577";
|
|
|
|
#if FLOAT_BORDER_COLOR_PATCH
|
2019-09-15 21:33:43 +00:00
|
|
|
static char hidfloatcolor[] = "#f76e0c";
|
2019-09-15 20:45:22 +00:00
|
|
|
#endif // FLOAT_BORDER_COLOR_PATCH
|
|
|
|
#endif // AWESOMEBAR_PATCH
|
|
|
|
|
|
|
|
#if TITLECOLOR_PATCH
|
|
|
|
static char titlefgcolor[] = "#eeeeee";
|
|
|
|
static char titlebgcolor[] = "#005577";
|
|
|
|
static char titlebordercolor[] = "#005577";
|
|
|
|
#if FLOAT_BORDER_COLOR_PATCH
|
2019-09-15 21:33:43 +00:00
|
|
|
static char titlefloatcolor[] = "#005577";
|
2019-09-15 20:45:22 +00:00
|
|
|
#endif // FLOAT_BORDER_COLOR_PATCH
|
|
|
|
#endif // TITLECOLOR_PATCH
|
2020-02-11 17:31:11 +00:00
|
|
|
#endif // VTCOLORS_PATCH
|
2019-09-15 20:45:22 +00:00
|
|
|
|
2019-09-04 22:16:39 +00:00
|
|
|
#if ALPHA_PATCH
|
|
|
|
static const unsigned int baralpha = 0xd0;
|
|
|
|
static const unsigned int borderalpha = OPAQUE;
|
2019-09-10 22:51:37 +00:00
|
|
|
static const unsigned int alphas[][3] = {
|
2020-05-26 18:53:53 +00:00
|
|
|
/* fg bg border */
|
2020-02-11 17:31:11 +00:00
|
|
|
[SchemeNorm] = { OPAQUE, baralpha, borderalpha },
|
|
|
|
[SchemeSel] = { OPAQUE, baralpha, borderalpha },
|
2019-10-06 22:46:23 +00:00
|
|
|
#if STATUSCOLORS_PATCH
|
2020-02-11 17:31:11 +00:00
|
|
|
[SchemeWarn] = { OPAQUE, baralpha, borderalpha },
|
2019-10-06 22:46:23 +00:00
|
|
|
#endif // STATUSCOLORS_PATCH
|
|
|
|
#if URGENTBORDER_PATCH || STATUSCOLORS_PATCH
|
2020-02-11 17:31:11 +00:00
|
|
|
[SchemeUrg] = { OPAQUE, baralpha, borderalpha },
|
2019-10-06 22:46:23 +00:00
|
|
|
#endif // URGENTBORDER_PATCH / STATUSCOLORS_PATCH
|
2019-09-15 20:45:22 +00:00
|
|
|
#if AWESOMEBAR_PATCH
|
2020-02-11 17:31:11 +00:00
|
|
|
[SchemeHid] = { OPAQUE, baralpha, borderalpha },
|
2019-09-10 06:27:00 +00:00
|
|
|
#endif // AWESOMEBAR_PATCH
|
2020-02-11 17:31:11 +00:00
|
|
|
#if VTCOLORS_PATCH
|
|
|
|
[SchemeTagsNorm] = { OPAQUE, baralpha, borderalpha },
|
|
|
|
[SchemeTagsSel] = { OPAQUE, baralpha, borderalpha },
|
|
|
|
[SchemeTitleNorm] = { OPAQUE, baralpha, borderalpha },
|
|
|
|
[SchemeTitleSel] = { OPAQUE, baralpha, borderalpha },
|
|
|
|
[SchemeStatus] = { OPAQUE, baralpha, borderalpha },
|
|
|
|
#elif TITLECOLOR_PATCH
|
|
|
|
[SchemeTitle] = { OPAQUE, baralpha, borderalpha },
|
|
|
|
#endif // VTCOLORS_PATCH / TITLECOLOR_PATCH
|
2019-09-04 22:16:39 +00:00
|
|
|
};
|
|
|
|
#endif // ALPHA_PATCH
|
2020-02-11 17:31:11 +00:00
|
|
|
#if VTCOLORS_PATCH && FLOAT_BORDER_COLOR_PATCH
|
|
|
|
static const char title_bg_dark[] = "#303030";
|
|
|
|
static const char title_bg_light[] = "#fdfdfd";
|
2020-05-26 18:53:53 +00:00
|
|
|
static const int color_ptrs[][ColCount] = {
|
2020-02-11 17:31:11 +00:00
|
|
|
/* fg bg border float */
|
|
|
|
[SchemeNorm] = { -1, -1, 5, 12 },
|
|
|
|
[SchemeSel] = { -1, -1, 11, 13 },
|
|
|
|
#if STATUSCOLORS_PATCH
|
|
|
|
[SchemeWarn] = { -1, 1, 1, 14 },
|
|
|
|
#endif // STATUSCOLORS_PATCH
|
|
|
|
#if URGENTBORDER_PATCH || STATUSCOLORS_PATCH
|
|
|
|
[SchemeUrg] = { 7, 9, 9, 15 },
|
|
|
|
#endif // URGENTBORDER_PATCH || STATUSCOLORS_PATCH
|
|
|
|
#if AWESOMEBAR_PATCH
|
|
|
|
[SchemeHid] = { 5, 0, 0, -1 },
|
|
|
|
#endif // AWESOMEBAR_PATCH
|
|
|
|
[SchemeTagsNorm] = { 2, 0, 0, -1 },
|
|
|
|
[SchemeTagsSel] = { 6, 5, 5, -1 },
|
|
|
|
[SchemeTitleNorm] = { 6, -1, -1, -1 },
|
|
|
|
[SchemeTitleSel] = { 6, -1, -1, -1 },
|
|
|
|
[SchemeStatus] = { 2, 0, 0, -1 },
|
|
|
|
};
|
2020-05-26 18:53:53 +00:00
|
|
|
static char colors[][ColCount][8] = {
|
2020-02-11 17:31:11 +00:00
|
|
|
/* fg bg border float */
|
|
|
|
[SchemeNorm] = { "#000000", "#000000", "#000000", "#000000" },
|
|
|
|
[SchemeSel] = { "#000000", "#000000", "#000000", "#000000" },
|
|
|
|
#if STATUSCOLORS_PATCH
|
|
|
|
[SchemeWarn] = { "#000000", "#000000", "#000000", "#000000" },
|
|
|
|
#endif // STATUSCOLORS_PATCH
|
|
|
|
#if URGENTBORDER_PATCH || STATUSCOLORS_PATCH
|
|
|
|
[SchemeUrg] = { "#000000", "#000000", "#000000", "#000000" },
|
|
|
|
#endif // URGENTBORDER_PATCH || STATUSCOLORS_PATCH
|
|
|
|
#if AWESOMEBAR_PATCH
|
|
|
|
[SchemeHid] = { "#000000", "#000000", "#000000", "#000000" },
|
|
|
|
#endif // AWESOMEBAR_PATCH
|
|
|
|
[SchemeTagsNorm] = { "#000000", "#000000", "#000000", "#000000" },
|
|
|
|
[SchemeTagsSel] = { "#000000", "#000000", "#000000", "#000000" },
|
|
|
|
[SchemeTitleNorm] = { "#000000", "#000000", "#000000", "#000000" },
|
|
|
|
[SchemeTitleSel] = { "#000000", "#000000", "#000000", "#000000" },
|
|
|
|
[SchemeStatus] = { "#000000", "#000000", "#000000", "#000000" },
|
|
|
|
};
|
|
|
|
#elif VTCOLORS_PATCH
|
|
|
|
static const char title_bg_dark[] = "#303030";
|
|
|
|
static const char title_bg_light[] = "#fdfdfd";
|
2020-05-26 18:53:53 +00:00
|
|
|
static const int color_ptrs[][ColCount] = {
|
2020-02-11 17:31:11 +00:00
|
|
|
/* fg bg border */
|
|
|
|
[SchemeNorm] = { -1, -1, 5 },
|
|
|
|
[SchemeSel] = { -1, -1, 11 },
|
|
|
|
#if STATUSCOLORS_PATCH
|
|
|
|
[SchemeWarn] = { -1, 1, 1 },
|
|
|
|
#endif // STATUSCOLORS_PATCH
|
|
|
|
#if URGENTBORDER_PATCH || STATUSCOLORS_PATCH
|
|
|
|
[SchemeUrg] = { 7, 9, 9 },
|
|
|
|
#endif // URGENTBORDER_PATCH || STATUSCOLORS_PATCH
|
|
|
|
#if AWESOMEBAR_PATCH
|
|
|
|
[SchemeHid] = { 5, 0, 0 },
|
|
|
|
#endif // AWESOMEBAR_PATCH
|
|
|
|
[SchemeTagsNorm] = { 2, 0, 0 },
|
|
|
|
[SchemeTagsSel] = { 6, 5, 5 },
|
|
|
|
[SchemeTitleNorm] = { 6, -1, -1 },
|
|
|
|
[SchemeTitleSel] = { 6, -1, -1 },
|
|
|
|
[SchemeStatus] = { 2, 0, 0 },
|
|
|
|
};
|
2020-05-26 18:53:53 +00:00
|
|
|
static char colors[][ColCount][8] = {
|
2020-02-11 17:31:11 +00:00
|
|
|
/* fg bg border */
|
|
|
|
[SchemeNorm] = { "#000000", "#000000", "#000000" },
|
|
|
|
[SchemeSel] = { "#000000", "#000000", "#000000" },
|
|
|
|
#if STATUSCOLORS_PATCH
|
|
|
|
[SchemeWarn] = { "#000000", "#000000", "#000000" },
|
|
|
|
#endif // STATUSCOLORS_PATCH
|
|
|
|
#if URGENTBORDER_PATCH || STATUSCOLORS_PATCH
|
|
|
|
[SchemeUrg] = { "#000000", "#000000", "#000000" },
|
|
|
|
#endif // URGENTBORDER_PATCH || STATUSCOLORS_PATCH
|
|
|
|
#if AWESOMEBAR_PATCH
|
|
|
|
[SchemeHid] = { "#000000", "#000000", "#000000" },
|
|
|
|
#endif // AWESOMEBAR_PATCH
|
|
|
|
[SchemeTagsNorm] = { "#000000", "#000000", "#000000" },
|
|
|
|
[SchemeTagsSel] = { "#000000", "#000000", "#000000" },
|
|
|
|
[SchemeTitleNorm] = { "#000000", "#000000", "#000000" },
|
|
|
|
[SchemeTitleSel] = { "#000000", "#000000", "#000000" },
|
|
|
|
[SchemeStatus] = { "#000000", "#000000", "#000000" },
|
|
|
|
};
|
|
|
|
#elif FLOAT_BORDER_COLOR_PATCH
|
2019-09-15 21:33:43 +00:00
|
|
|
static
|
|
|
|
#if !XRDB_PATCH
|
|
|
|
const
|
|
|
|
#endif // XRDB_PATCH
|
2020-05-26 18:53:53 +00:00
|
|
|
char *colors[][ColCount] = {
|
2019-09-15 21:33:43 +00:00
|
|
|
/* fg bg border float */
|
|
|
|
[SchemeNorm] = { normfgcolor, normbgcolor, normbordercolor, normfloatcolor },
|
|
|
|
[SchemeSel] = { selfgcolor, selbgcolor, selbordercolor, selfloatcolor },
|
2019-10-06 22:46:23 +00:00
|
|
|
#if STATUSCOLORS_PATCH
|
|
|
|
[SchemeWarn] = { warnfgcolor, warnbgcolor, warnbordercolor, warnfloatcolor },
|
|
|
|
#endif // STATUSCOLORS_PATCH
|
|
|
|
#if URGENTBORDER_PATCH || STATUSCOLORS_PATCH
|
2019-09-15 22:13:03 +00:00
|
|
|
[SchemeUrg] = { urgfgcolor, urgbgcolor, urgbordercolor, urgfloatcolor },
|
2019-10-06 22:46:23 +00:00
|
|
|
#endif // URGENTBORDER_PATCH / STATUSCOLORS_PATCH
|
2019-09-10 22:51:37 +00:00
|
|
|
#if AWESOMEBAR_PATCH
|
2019-09-15 21:33:43 +00:00
|
|
|
[SchemeHid] = { hidfgcolor, hidbgcolor, hidbordercolor, hidfloatcolor },
|
2019-09-10 22:51:37 +00:00
|
|
|
#endif // AWESOMEBAR_PATCH
|
2019-09-13 21:56:05 +00:00
|
|
|
#if TITLECOLOR_PATCH
|
2019-09-15 21:33:43 +00:00
|
|
|
[SchemeTitle] = { titlefgcolor, titlebgcolor, titlebordercolor, titlefloatcolor },
|
2019-09-13 21:56:05 +00:00
|
|
|
#endif // TITLECOLOR_PATCH
|
2019-09-10 22:51:37 +00:00
|
|
|
};
|
2020-02-11 17:31:11 +00:00
|
|
|
#else // !VTCOLORS_PATCH && !FLOAT_BORDER_COLOR_PATCH
|
2019-09-15 21:33:43 +00:00
|
|
|
static
|
|
|
|
#if !XRDB_PATCH
|
|
|
|
const
|
|
|
|
#endif // XRDB_PATCH
|
2020-05-26 18:53:53 +00:00
|
|
|
char *colors[][ColCount] = {
|
2019-09-15 20:45:22 +00:00
|
|
|
/* fg bg border */
|
|
|
|
[SchemeNorm] = { normfgcolor, normbgcolor, normbordercolor },
|
|
|
|
[SchemeSel] = { selfgcolor, selbgcolor, selbordercolor },
|
2019-10-06 22:46:23 +00:00
|
|
|
#if STATUSCOLORS_PATCH
|
|
|
|
[SchemeWarn] = { warnfgcolor, warnbgcolor, warnbordercolor },
|
|
|
|
#endif // STATUSCOLORS_PATCH
|
|
|
|
#if URGENTBORDER_PATCH || STATUSCOLORS_PATCH
|
2019-09-15 22:13:03 +00:00
|
|
|
[SchemeUrg] = { urgfgcolor, urgbgcolor, urgbordercolor },
|
2019-10-06 22:46:23 +00:00
|
|
|
#endif // URGENTBORDER_PATCH / STATUSCOLORS_PATCH
|
2019-09-09 22:18:46 +00:00
|
|
|
#if AWESOMEBAR_PATCH
|
2019-09-15 20:45:22 +00:00
|
|
|
[SchemeHid] = { hidfgcolor, hidbgcolor, hidbordercolor },
|
2019-09-09 22:18:46 +00:00
|
|
|
#endif // AWESOMEBAR_PATCH
|
2019-09-13 21:56:05 +00:00
|
|
|
#if TITLECOLOR_PATCH
|
2019-09-15 20:45:22 +00:00
|
|
|
[SchemeTitle] = { titlefgcolor, titlebgcolor, titlebordercolor },
|
2019-09-13 21:56:05 +00:00
|
|
|
#endif // TITLECOLOR_PATCH
|
2019-09-04 22:16:39 +00:00
|
|
|
};
|
2020-02-11 17:31:11 +00:00
|
|
|
#endif // VTCOLORS_PATCH / FLOAT_BORDER_COLOR_PATCH
|
2019-09-04 22:16:39 +00:00
|
|
|
|
2020-06-05 09:23:22 +00:00
|
|
|
#if SCRATCHPADS_PATCH
|
[dwm][PATCH] Multiple scratchpads
This patch enables multiple scratchpads, each with one assigned window.
This enables the same scratchpad workflow that you have in i3.
Scratchpads are implemented as special tags, whose mask does not
apply to new spawned windows. To assign a window to a scratchpad you
have to set up a rule, as you do with regular tags.
Windows tagged with scratchpad tags can be set floating or not in the
rules array. Most users would probably want them floating (i3 style),
but having them tiled does also perfectly work and might fit better the
DWM approach. In case they are set floating, the patch moves them to the
center of the screen whenever the are shown. The patch can easily be
modified to make this last feature configurable in the rules array (see
the center patch).
The togglescratch function, borrowed from the previous scratchpad patch
and slightly modified, can be used to spawn a registered scratchpad
process or toggle its view. This function looks for a window tagged on
the selected scratchpad. If it is found its view is toggled. If it is
not found the corresponding registered command is spawned. The
config.def.h shows three examples of its use to spawn a terminal in the
first scratchpad tag, a second terminal running ranger on the second
scratchpad tag and the keepassxc application to manage passwords on a
third scratchpad tag.
If you prefer to spawn your scratchpad applications from the startup
script, you might opt for binding keys to toggleview instead, as
scratchpads are just special tags (you may even extend the TAGKEYS macro
to generalize the key bindings).
2020-04-16 14:39:22 +00:00
|
|
|
const char *spcmd1[] = {"st", "-n", "spterm", "-g", "120x34", NULL };
|
|
|
|
const char *spcmd2[] = {"st", "-n", "spfm", "-g", "144x41", "-e", "ranger", NULL };
|
|
|
|
const char *spcmd3[] = {"keepassxc", NULL };
|
|
|
|
static Sp scratchpads[] = {
|
|
|
|
/* name cmd */
|
|
|
|
{"spterm", spcmd1},
|
|
|
|
{"spranger", spcmd2},
|
|
|
|
{"keepassxc", spcmd3},
|
|
|
|
};
|
2020-06-05 09:23:22 +00:00
|
|
|
#endif // SCRATCHPADS_PATCH
|
[dwm][PATCH] Multiple scratchpads
This patch enables multiple scratchpads, each with one assigned window.
This enables the same scratchpad workflow that you have in i3.
Scratchpads are implemented as special tags, whose mask does not
apply to new spawned windows. To assign a window to a scratchpad you
have to set up a rule, as you do with regular tags.
Windows tagged with scratchpad tags can be set floating or not in the
rules array. Most users would probably want them floating (i3 style),
but having them tiled does also perfectly work and might fit better the
DWM approach. In case they are set floating, the patch moves them to the
center of the screen whenever the are shown. The patch can easily be
modified to make this last feature configurable in the rules array (see
the center patch).
The togglescratch function, borrowed from the previous scratchpad patch
and slightly modified, can be used to spawn a registered scratchpad
process or toggle its view. This function looks for a window tagged on
the selected scratchpad. If it is found its view is toggled. If it is
not found the corresponding registered command is spawned. The
config.def.h shows three examples of its use to spawn a terminal in the
first scratchpad tag, a second terminal running ranger on the second
scratchpad tag and the keepassxc application to manage passwords on a
third scratchpad tag.
If you prefer to spawn your scratchpad applications from the startup
script, you might opt for binding keys to toggleview instead, as
scratchpads are just special tags (you may even extend the TAGKEYS macro
to generalize the key bindings).
2020-04-16 14:39:22 +00:00
|
|
|
|
2019-09-04 22:16:39 +00:00
|
|
|
/* tagging */
|
2019-09-11 22:48:29 +00:00
|
|
|
#if EWMHTAGS_PATCH
|
|
|
|
static char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
|
|
|
|
#else
|
2019-09-04 22:16:39 +00:00
|
|
|
static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
|
2019-09-11 22:48:29 +00:00
|
|
|
#endif // EWMHTAGS_PATCH
|
2019-09-09 21:27:10 +00:00
|
|
|
#if ALTERNATIVE_TAGS_PATCH
|
|
|
|
static const char *tagsalt[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
|
|
|
|
#endif // ALTERNATIVE_TAGS_PATCH
|
2019-09-04 22:16:39 +00:00
|
|
|
|
2019-10-05 21:28:50 +00:00
|
|
|
#if TAGGRID_PATCH
|
|
|
|
/* grid of tags */
|
|
|
|
#define DRAWCLASSICTAGS 1 << 0
|
|
|
|
#define DRAWTAGGRID 1 << 1
|
|
|
|
|
|
|
|
#define SWITCHTAG_UP 1 << 0
|
|
|
|
#define SWITCHTAG_DOWN 1 << 1
|
|
|
|
#define SWITCHTAG_LEFT 1 << 2
|
|
|
|
#define SWITCHTAG_RIGHT 1 << 3
|
|
|
|
#define SWITCHTAG_TOGGLETAG 1 << 4
|
|
|
|
#define SWITCHTAG_TAG 1 << 5
|
|
|
|
#define SWITCHTAG_VIEW 1 << 6
|
|
|
|
#define SWITCHTAG_TOGGLEVIEW 1 << 7
|
|
|
|
|
|
|
|
static const unsigned int drawtagmask = DRAWTAGGRID; /* | DRAWCLASSICTAGS to show classic row of tags */
|
|
|
|
static const int tagrows = 2;
|
|
|
|
#endif // TAGGRID_PATCH
|
|
|
|
|
2020-06-14 13:52:47 +00:00
|
|
|
/* There are two options when it comes to per-client rules:
|
|
|
|
* - a typical struct table or
|
|
|
|
* - using the RULE macro
|
|
|
|
*
|
|
|
|
* A traditional struct table looks like this:
|
2020-06-15 11:24:23 +00:00
|
|
|
* // class instance title wintype tags mask isfloating monitor
|
|
|
|
* { "Gimp", NULL, NULL, NULL, 1 << 4, 0, -1 },
|
|
|
|
* { "Firefox", NULL, NULL, NULL, 1 << 7, 0, -1 },
|
2020-06-14 13:52:47 +00:00
|
|
|
*
|
|
|
|
* The RULE macro has the default values set for each field allowing you to only
|
|
|
|
* specify the values that are relevant for your rule, e.g.
|
|
|
|
*
|
|
|
|
* RULE(.class = "Gimp", .tags = 1 << 4)
|
|
|
|
* RULE(.class = "Firefox", .tags = 1 << 7)
|
|
|
|
*
|
|
|
|
* Refer to the Rule struct definition for the list of available fields depending on
|
|
|
|
* the patches you enable.
|
|
|
|
*/
|
2019-09-04 22:16:39 +00:00
|
|
|
static const Rule rules[] = {
|
|
|
|
/* xprop(1):
|
|
|
|
* WM_CLASS(STRING) = instance, class
|
|
|
|
* WM_NAME(STRING) = title
|
2019-09-07 21:46:08 +00:00
|
|
|
* WM_WINDOW_ROLE(STRING) = role
|
2020-06-15 11:24:23 +00:00
|
|
|
* _NET_WM_WINDOW_TYPE(ATOM) = wintype
|
2019-09-04 22:16:39 +00:00
|
|
|
*/
|
2020-06-15 14:27:55 +00:00
|
|
|
RULE(.wintype = WTYPE "DIALOG", .isfloating = 1)
|
2020-06-15 14:28:13 +00:00
|
|
|
RULE(.wintype = WTYPE "UTILITY", .isfloating = 1)
|
2020-06-15 14:27:55 +00:00
|
|
|
RULE(.wintype = WTYPE "TOOLBAR", .isfloating = 1)
|
|
|
|
RULE(.wintype = WTYPE "SPLASH", .isfloating = 1)
|
2020-06-14 13:52:47 +00:00
|
|
|
RULE(.class = "Gimp", .tags = 1 << 4)
|
|
|
|
RULE(.class = "Firefox", .tags = 1 << 7)
|
2020-06-05 09:23:22 +00:00
|
|
|
#if SCRATCHPADS_PATCH
|
2020-06-14 13:52:47 +00:00
|
|
|
RULE(.instance = "spterm", .tags = SPTAG(0), .isfloating = 1)
|
|
|
|
RULE(.instance = "spfm", .tags = SPTAG(1), .isfloating = 1)
|
|
|
|
RULE(.instance = "keepassxc", .tags = SPTAG(2))
|
2020-06-05 09:23:22 +00:00
|
|
|
#endif // SCRATCHPADS_PATCH
|
2019-09-04 22:16:39 +00:00
|
|
|
};
|
|
|
|
|
2019-09-11 06:28:00 +00:00
|
|
|
#if MONITOR_RULES_PATCH
|
2019-09-30 21:52:51 +00:00
|
|
|
#if PERTAG_PATCH
|
2019-09-11 06:28:00 +00:00
|
|
|
static const MonitorRule monrules[] = {
|
2020-04-26 14:26:36 +00:00
|
|
|
/* monitor tag layout mfact nmaster showbar topbar */
|
|
|
|
{ 1, -1, 2, -1, -1, -1, -1 }, // use a different layout for the second monitor
|
|
|
|
{ -1, -1, 0, -1, -1, -1, -1 }, // default
|
2019-09-11 06:28:00 +00:00
|
|
|
};
|
2019-09-30 21:52:51 +00:00
|
|
|
#else
|
|
|
|
static const MonitorRule monrules[] = {
|
2020-04-26 14:26:36 +00:00
|
|
|
/* monitor layout mfact nmaster showbar topbar */
|
|
|
|
{ 1, 2, -1, -1, -1, -1 }, // use a different layout for the second monitor
|
|
|
|
{ -1, 0, -1, -1, -1, -1 }, // default
|
2019-09-09 20:25:19 +00:00
|
|
|
};
|
2019-09-30 21:52:51 +00:00
|
|
|
#endif // PERTAG_PATCH
|
2019-09-11 06:28:00 +00:00
|
|
|
#endif // MONITOR_RULES_PATCH
|
|
|
|
|
2020-02-02 10:40:24 +00:00
|
|
|
#if DWMC_PATCH
|
|
|
|
/* signal definitions */
|
|
|
|
/* signum must be greater than 0 */
|
|
|
|
/* trigger signals using `xsetroot -name "fsignal:<signame> [<type> <value>]"` */
|
|
|
|
static Signal signals[] = {
|
2020-06-02 09:11:59 +00:00
|
|
|
/* signum function */
|
|
|
|
{ "focusstack", focusstack },
|
|
|
|
{ "setmfact", setmfact },
|
|
|
|
{ "togglebar", togglebar },
|
|
|
|
{ "incnmaster", incnmaster },
|
|
|
|
{ "togglefloating", togglefloating },
|
|
|
|
{ "focusmon", focusmon },
|
|
|
|
#if STACKER_PATCH
|
|
|
|
{ "pushstack", pushstack },
|
|
|
|
#endif // STACKER_PATCH
|
|
|
|
#if FOCUSURGENT_PATCH
|
|
|
|
{ "focusurgent", focusurgent },
|
|
|
|
#endif // FOCUSURGENT_PATCH
|
|
|
|
#if FOCUSADJACENTTAG_PATCH
|
|
|
|
{ "viewtoleft", viewtoleft },
|
|
|
|
{ "viewtoright", viewtoright },
|
|
|
|
{ "tagtoleft", tagtoleft },
|
|
|
|
{ "tagtoright", tagtoright},
|
|
|
|
{ "tagandviewtoleft", tagandviewtoleft },
|
|
|
|
{ "tagandviewtoright", tagandviewtoright },
|
|
|
|
#endif // FOCUSADJACENTTAG_PATCH
|
|
|
|
#if SWAPFOCUS_PATCH && PERTAG_PATCH
|
|
|
|
{ "swapfocus", swapfocus },
|
|
|
|
#endif // SWAPFOCUS_PATCH
|
|
|
|
#if SWITCHCOL_PATCH
|
|
|
|
{ "switchcol", switchcol },
|
|
|
|
#endif // SWITCHCOL_PATCH
|
|
|
|
#if ROTATESTACK_PATCH
|
|
|
|
{ "rotatestack", rotatestack },
|
|
|
|
#endif // ROTATESTACK_PATCH
|
|
|
|
#if INPLACEROTATE_PATCH
|
|
|
|
{ "inplacerotate", inplacerotate },
|
|
|
|
#endif // INPLACEROTATE_PATCH
|
|
|
|
#if PUSH_PATCH || PUSH_NO_MASTER_PATCH
|
|
|
|
{ "pushdown", pushdown },
|
|
|
|
{ "pushup", pushup },
|
|
|
|
#endif // PUSH_PATCH / PUSH_NO_MASTER_PATCH
|
|
|
|
#if FLEXTILE_DELUXE_LAYOUT
|
|
|
|
{ "incnstack", incnstack },
|
|
|
|
{ "rotatelayoutaxis", rotatelayoutaxis },
|
|
|
|
{ "setlayoutaxisex", setlayoutaxisex },
|
|
|
|
{ "mirrorlayout", mirrorlayout },
|
|
|
|
#endif // FLEXTILE_DELUXE_LAYOUT
|
|
|
|
#if CFACTS_PATCH
|
|
|
|
{ "setcfact", setcfact },
|
|
|
|
#endif // CFACTS_PATCH
|
|
|
|
#if MOVEPLACE_PATCH
|
|
|
|
{ "moveplace", moveplace },
|
|
|
|
#endif // MOVEPLACE_PATCH
|
|
|
|
#if EXRESIZE_PATCH
|
|
|
|
{ "explace", explace },
|
|
|
|
{ "togglehorizontalexpand", togglehorizontalexpand },
|
|
|
|
{ "toggleverticalexpand", toggleverticalexpand },
|
|
|
|
{ "togglemaximize", togglemaximize },
|
|
|
|
#endif // EXRESIZE_PATCH
|
2020-06-04 18:29:16 +00:00
|
|
|
#if KEYMODES_PATCH
|
|
|
|
{ "setkeymode", setkeymode },
|
|
|
|
#endif // KEYMODES_PATCH
|
2020-06-02 09:11:59 +00:00
|
|
|
#if TRANSFER_PATCH
|
|
|
|
{ "transfer", transfer },
|
|
|
|
#endif // TRANSFER_PATCH
|
|
|
|
#if TRANSFER_ALL_PATCH
|
|
|
|
{ "transferall", transferall },
|
|
|
|
#endif // TRANSFER_ALL_PATCH
|
|
|
|
{ "tagmon", tagmon },
|
|
|
|
{ "zoom", zoom },
|
|
|
|
#if VANITYGAPS_PATCH
|
|
|
|
{ "incrgaps", incrgaps },
|
|
|
|
{ "incrigaps", incrigaps },
|
|
|
|
{ "incrogaps", incrogaps },
|
|
|
|
{ "incrihgaps", incrihgaps },
|
|
|
|
{ "incrivgaps", incrivgaps },
|
|
|
|
{ "incrohgaps", incrohgaps },
|
|
|
|
{ "incrovgaps", incrovgaps },
|
|
|
|
{ "togglegaps", togglegaps },
|
|
|
|
{ "defaultgaps", defaultgaps },
|
2020-06-04 18:29:16 +00:00
|
|
|
{ "setgaps", setgapsex },
|
2020-06-02 09:11:59 +00:00
|
|
|
#endif // VANITYGAPS_PATCH
|
|
|
|
{ "view", view },
|
|
|
|
{ "viewall", viewallex },
|
|
|
|
{ "viewex", viewex },
|
|
|
|
{ "toggleview", view },
|
|
|
|
#if SHIFTVIEW_PATCH
|
|
|
|
{ "shiftview", shiftview },
|
|
|
|
#endif // SHIFTVIEW_PATCH
|
|
|
|
#if SHIFTVIEW_CLIENTS_PATCH
|
|
|
|
{ "shiftviewclients", shiftviewclients },
|
|
|
|
#endif // SHIFTVIEW_CLIENTS_PATCH
|
|
|
|
#if SELFRESTART_PATCH
|
|
|
|
{ "self_restart", self_restart },
|
|
|
|
#endif // SELFRESTART_PATCH
|
|
|
|
#if TAGGRID_PATCH
|
|
|
|
{ "switchtag", switchtag },
|
|
|
|
#endif // TAGGRID_PATCH
|
|
|
|
#if STICKY_PATCH
|
|
|
|
{ "togglesticky", togglesticky },
|
|
|
|
#endif // STICKY_PATCH
|
|
|
|
#if SETBORDERPX_PATCH
|
2020-06-21 13:36:22 +00:00
|
|
|
{ "setborderpx", setborderpx },
|
2020-06-02 09:11:59 +00:00
|
|
|
#endif // SETBORDERPX_PATCH
|
|
|
|
#if CYCLELAYOUTS_PATCH
|
|
|
|
{ "cyclelayout", cyclelayout },
|
|
|
|
#endif // CYCLELAYOUTS_PATCH
|
|
|
|
#if MDPCONTROL_PATCH
|
|
|
|
{ "mpdchange", mpdchange },
|
|
|
|
{ "mpdcontrol", mpdcontrol },
|
|
|
|
#endif // MDPCONTROL_PATCH
|
|
|
|
{ "toggleviewex", toggleviewex },
|
|
|
|
{ "tag", tag },
|
|
|
|
{ "tagall", tagallex },
|
|
|
|
{ "tagex", tagex },
|
|
|
|
{ "toggletag", tag },
|
|
|
|
{ "toggletagex", toggletagex },
|
|
|
|
#if TAGALLMON_PATCH
|
|
|
|
{ "tagallmon", tagallmon },
|
|
|
|
#endif // TAGALLMON_PATCH
|
|
|
|
#if TAGSWAPMON_PATCH
|
|
|
|
{ "tagswapmon", tagswapmon},
|
|
|
|
#endif // TAGSWAPMON_PATCH
|
|
|
|
#if ALTERNATIVE_TAGS_PATCH
|
|
|
|
{ "togglealttag", togglealttag },
|
|
|
|
#endif // ALTERNATIVE_TAGS_PATCH
|
|
|
|
#if TOGGLEFULLSCREEN_PATCH
|
|
|
|
{ "togglefullscreen", togglefullscreen },
|
|
|
|
#endif // TOGGLEFULLSCREEN_PATCH
|
|
|
|
#if !FAKEFULLSCREEN_PATCH && FAKEFULLSCREEN_CLIENT_PATCH
|
|
|
|
{ "togglefakefullscreen", togglefakefullscreen },
|
|
|
|
#endif // FAKEFULLSCREEN_CLIENT_PATCH
|
|
|
|
#if FULLSCREEN_PATCH
|
|
|
|
{ "fullscreen", fullscreen },
|
|
|
|
#endif // FULLSCREEN_PATCH
|
|
|
|
#if MAXIMIZE_PATCH
|
|
|
|
{ "togglehorizontalmax", togglehorizontalmax },
|
|
|
|
{ "toggleverticalmax", toggleverticalmax },
|
|
|
|
{ "togglemax", togglemax },
|
|
|
|
#endif // MAXIMIZE_PATCH
|
2020-06-05 09:23:22 +00:00
|
|
|
#if SCRATCHPADS_PATCH
|
2020-06-02 09:11:59 +00:00
|
|
|
{ "togglescratch", togglescratch },
|
2020-06-05 09:23:22 +00:00
|
|
|
#endif // SCRATCHPADS_PATCH
|
2020-06-02 09:11:59 +00:00
|
|
|
#if UNFLOATVISIBLE_PATCH
|
|
|
|
{ "unfloatvisible", unfloatvisible },
|
|
|
|
#endif // UNFLOATVISIBLE_PATCH
|
|
|
|
{ "killclient", killclient },
|
|
|
|
#if WINVIEW_PATCH
|
|
|
|
{ "winview", winview },
|
|
|
|
#endif // WINVIEW_PATCH
|
|
|
|
#if XRDB_PATCH && !VTCOLORS_PATCH
|
|
|
|
{ "xrdb", xrdb },
|
|
|
|
#endif // XRDB_PATCH
|
2020-06-21 07:07:51 +00:00
|
|
|
#if TAGOTHERMONITOR_PATCH
|
2020-06-19 21:18:50 +00:00
|
|
|
{ "tagnextmonex", tagnextmonex },
|
|
|
|
{ "tagprevmonex", tagprevmonex },
|
2020-06-21 07:07:51 +00:00
|
|
|
#endif // TAGOTHERMONITOR_PATCH
|
2020-06-02 09:11:59 +00:00
|
|
|
{ "quit", quit },
|
|
|
|
{ "setlayout", setlayout },
|
|
|
|
{ "setlayoutex", setlayoutex },
|
2020-02-02 10:40:24 +00:00
|
|
|
};
|
|
|
|
#elif FSIGNAL_PATCH
|
|
|
|
/* signal definitions */
|
|
|
|
/* signum must be greater than 0 */
|
|
|
|
/* trigger signals using `xsetroot -name "fsignal:<signum>"` */
|
|
|
|
static Signal signals[] = {
|
|
|
|
/* signum function argument */
|
|
|
|
{ 1, setlayout, {.v = 0} },
|
|
|
|
};
|
|
|
|
#endif // DWMC_PATCH
|
|
|
|
|
2019-09-11 06:28:00 +00:00
|
|
|
/* layout(s) */
|
|
|
|
static const float mfact = 0.55; /* factor of master area size [0.05..0.95] */
|
|
|
|
static const int nmaster = 1; /* number of clients in master area */
|
2019-09-30 21:52:51 +00:00
|
|
|
#if FLEXTILE_DELUXE_LAYOUT
|
|
|
|
static const int nstack = 0; /* number of clients in primary stack area */
|
|
|
|
#endif // FLEXTILE_DELUXE_LAYOUT
|
2019-09-11 06:28:00 +00:00
|
|
|
static const int resizehints = 1; /* 1 means respect size hints in tiled resizals */
|
2019-09-09 20:25:19 +00:00
|
|
|
|
2019-09-09 17:49:41 +00:00
|
|
|
#if NROWGRID_LAYOUT
|
|
|
|
#define FORCE_VSPLIT 1
|
|
|
|
#endif
|
|
|
|
|
2019-10-03 20:58:58 +00:00
|
|
|
/* Position of the monocle layout in the layouts variable, used by warp and fullscreen patches */
|
|
|
|
#define MONOCLE_LAYOUT_POS 2
|
|
|
|
|
2019-09-30 21:52:51 +00:00
|
|
|
#if FLEXTILE_DELUXE_LAYOUT
|
|
|
|
static const Layout layouts[] = {
|
|
|
|
/* symbol arrange function, { nmaster, nstack, layout, master axis, stack axis, secondary stack axis } */
|
|
|
|
{ "[]=", flextile, { -1, -1, SPLIT_VERTICAL, TOP_TO_BOTTOM, TOP_TO_BOTTOM, 0, NULL } }, // default tile layout
|
|
|
|
{ "><>", NULL, {0} }, /* no layout function means floating behavior */
|
|
|
|
{ "[M]", flextile, { -1, -1, NO_SPLIT, MONOCLE, 0, 0, NULL } }, // monocle
|
2019-10-08 20:57:21 +00:00
|
|
|
{ "|||", flextile, { -1, -1, SPLIT_VERTICAL, LEFT_TO_RIGHT, TOP_TO_BOTTOM, 0, NULL } }, // columns (col) layout
|
2019-09-30 21:52:51 +00:00
|
|
|
{ ">M>", flextile, { -1, -1, FLOATING_MASTER, LEFT_TO_RIGHT, LEFT_TO_RIGHT, 0, NULL } }, // floating master
|
|
|
|
{ "[D]", flextile, { -1, -1, SPLIT_VERTICAL, TOP_TO_BOTTOM, MONOCLE, 0, NULL } }, // deck
|
|
|
|
{ "TTT", flextile, { -1, -1, SPLIT_HORIZONTAL, LEFT_TO_RIGHT, LEFT_TO_RIGHT, 0, NULL } }, // bstack
|
|
|
|
{ "===", flextile, { -1, -1, SPLIT_HORIZONTAL, LEFT_TO_RIGHT, TOP_TO_BOTTOM, 0, NULL } }, // bstackhoriz
|
2020-06-02 09:11:59 +00:00
|
|
|
{ "|M|", flextile, { -1, -1, SPLIT_CENTERED_VERTICAL, TOP_TO_BOTTOM, TOP_TO_BOTTOM, TOP_TO_BOTTOM, NULL } }, // centeredmaster
|
2019-09-30 21:52:51 +00:00
|
|
|
{ ":::", flextile, { -1, -1, NO_SPLIT, GAPPLESSGRID, 0, 0, NULL } }, // gappless grid
|
|
|
|
{ "[\\]", flextile, { -1, -1, NO_SPLIT, DWINDLE, 0, 0, NULL } }, // fibonacci dwindle
|
|
|
|
{ "(@)", flextile, { -1, -1, NO_SPLIT, SPIRAL, 0, 0, NULL } }, // fibonacci spiral
|
2019-10-07 22:54:06 +00:00
|
|
|
#if TILE_LAYOUT
|
|
|
|
{ "[]=", tile, {0} },
|
|
|
|
#endif
|
|
|
|
#if MONOCLE_LAYOUT
|
|
|
|
{ "[M]", monocle, {0} },
|
|
|
|
#endif
|
|
|
|
#if BSTACK_LAYOUT
|
|
|
|
{ "TTT", bstack, {0} },
|
|
|
|
#endif
|
|
|
|
#if BSTACKHORIZ_LAYOUT
|
|
|
|
{ "===", bstackhoriz, {0} },
|
|
|
|
#endif
|
|
|
|
#if CENTEREDMASTER_LAYOUT
|
|
|
|
{ "|M|", centeredmaster, {0} },
|
|
|
|
#endif
|
|
|
|
#if CENTEREDFLOATINGMASTER_LAYOUT
|
|
|
|
{ ">M>", centeredfloatingmaster, {0} },
|
|
|
|
#endif
|
2019-10-08 20:57:21 +00:00
|
|
|
#if COLUMNS_LAYOUT
|
|
|
|
{ "|||", col, {0} },
|
|
|
|
#endif
|
2019-10-07 22:54:06 +00:00
|
|
|
#if DECK_LAYOUT
|
|
|
|
{ "[D]", deck, {0} },
|
|
|
|
#endif
|
|
|
|
#if FIBONACCI_SPIRAL_LAYOUT
|
|
|
|
{ "(@)", spiral, {0} },
|
|
|
|
#endif
|
|
|
|
#if FIBONACCI_DWINDLE_LAYOUT
|
|
|
|
{ "[\\]", dwindle, {0} },
|
|
|
|
#endif
|
|
|
|
#if GRIDMODE_LAYOUT
|
|
|
|
{ "HHH", grid, {0} },
|
|
|
|
#endif
|
|
|
|
#if HORIZGRID_LAYOUT
|
|
|
|
{ "---", horizgrid, {0} },
|
|
|
|
#endif
|
|
|
|
#if GAPPLESSGRID_LAYOUT
|
|
|
|
{ ":::", gaplessgrid, {0} },
|
|
|
|
#endif
|
|
|
|
#if NROWGRID_LAYOUT
|
|
|
|
{ "###", nrowgrid, {0} },
|
|
|
|
#endif
|
2019-09-30 21:52:51 +00:00
|
|
|
#if CYCLELAYOUTS_PATCH
|
|
|
|
{ NULL, NULL, {0} },
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
#else
|
2019-09-04 22:16:39 +00:00
|
|
|
static const Layout layouts[] = {
|
|
|
|
/* symbol arrange function */
|
2019-09-08 22:18:47 +00:00
|
|
|
#if TILE_LAYOUT
|
2019-09-04 22:16:39 +00:00
|
|
|
{ "[]=", tile }, /* first entry is default */
|
2019-09-09 17:49:41 +00:00
|
|
|
#endif
|
2019-09-04 22:16:39 +00:00
|
|
|
{ "><>", NULL }, /* no layout function means floating behavior */
|
2019-09-08 22:18:47 +00:00
|
|
|
#if MONOCLE_LAYOUT
|
2019-09-04 22:16:39 +00:00
|
|
|
{ "[M]", monocle },
|
2019-09-09 17:49:41 +00:00
|
|
|
#endif
|
2019-09-08 22:18:47 +00:00
|
|
|
#if BSTACK_LAYOUT
|
|
|
|
{ "TTT", bstack },
|
2019-09-09 17:49:41 +00:00
|
|
|
#endif
|
2019-09-08 22:18:47 +00:00
|
|
|
#if BSTACKHORIZ_LAYOUT
|
|
|
|
{ "===", bstackhoriz },
|
2019-09-09 17:49:41 +00:00
|
|
|
#endif
|
2019-09-09 19:35:19 +00:00
|
|
|
#if CENTEREDMASTER_LAYOUT
|
|
|
|
{ "|M|", centeredmaster },
|
|
|
|
#endif
|
|
|
|
#if CENTEREDFLOATINGMASTER_LAYOUT
|
|
|
|
{ ">M>", centeredfloatingmaster },
|
|
|
|
#endif
|
2019-10-08 20:57:21 +00:00
|
|
|
#if COLUMNS_LAYOUT
|
|
|
|
{ "|||", col },
|
|
|
|
#endif
|
2019-09-09 16:00:02 +00:00
|
|
|
#if DECK_LAYOUT
|
|
|
|
{ "[D]", deck },
|
2019-09-09 17:49:41 +00:00
|
|
|
#endif
|
2019-09-09 16:50:05 +00:00
|
|
|
#if FIBONACCI_SPIRAL_LAYOUT
|
|
|
|
{ "(@)", spiral },
|
2019-09-09 17:49:41 +00:00
|
|
|
#endif
|
2019-09-09 16:50:05 +00:00
|
|
|
#if FIBONACCI_DWINDLE_LAYOUT
|
|
|
|
{ "[\\]", dwindle },
|
2019-09-09 17:49:41 +00:00
|
|
|
#endif
|
2019-09-09 17:31:16 +00:00
|
|
|
#if GRIDMODE_LAYOUT
|
|
|
|
{ "HHH", grid },
|
2019-09-09 17:49:41 +00:00
|
|
|
#endif
|
2019-09-09 17:31:16 +00:00
|
|
|
#if HORIZGRID_LAYOUT
|
2019-09-09 17:49:41 +00:00
|
|
|
{ "---", horizgrid },
|
|
|
|
#endif
|
|
|
|
#if GAPPLESSGRID_LAYOUT
|
|
|
|
{ ":::", gaplessgrid },
|
|
|
|
#endif
|
|
|
|
#if NROWGRID_LAYOUT
|
|
|
|
{ "###", nrowgrid },
|
2019-09-09 17:31:16 +00:00
|
|
|
#endif
|
2019-09-07 20:27:06 +00:00
|
|
|
#if CYCLELAYOUTS_PATCH
|
|
|
|
{ NULL, NULL },
|
2019-09-09 17:49:41 +00:00
|
|
|
#endif
|
2019-09-04 22:16:39 +00:00
|
|
|
};
|
2019-09-30 21:52:51 +00:00
|
|
|
#endif // FLEXTILE_DELUXE_LAYOUT
|
2019-09-04 22:16:39 +00:00
|
|
|
|
|
|
|
/* key definitions */
|
|
|
|
#define MODKEY Mod1Mask
|
2020-06-21 07:07:51 +00:00
|
|
|
#if COMBO_PATCH && SWAPTAGS_PATCH && TAGOTHERMONITOR_PATCH
|
|
|
|
#define TAGKEYS(KEY,TAG) \
|
|
|
|
{ MODKEY, KEY, comboview, {.ui = 1 << TAG} }, \
|
|
|
|
{ MODKEY|ControlMask, KEY, toggleview, {.ui = 1 << TAG} }, \
|
|
|
|
{ MODKEY|ShiftMask, KEY, combotag, {.ui = 1 << TAG} }, \
|
|
|
|
{ MODKEY|ControlMask|ShiftMask, KEY, toggletag, {.ui = 1 << TAG} }, \
|
|
|
|
{ MODKEY|Mod4Mask|ShiftMask, KEY, swaptags, {.ui = 1 << TAG} }, \
|
|
|
|
{ MODKEY|Mod4Mask, KEY, tagnextmon, {.ui = 1 << TAG} }, \
|
|
|
|
{ MODKEY|Mod4Mask|ControlMask, KEY, tagprevmon, {.ui = 1 << TAG} },
|
|
|
|
#elif COMBO_PATCH && SWAPTAGS_PATCH
|
2019-09-11 21:35:43 +00:00
|
|
|
#define TAGKEYS(KEY,TAG) \
|
|
|
|
{ MODKEY, KEY, comboview, {.ui = 1 << TAG} }, \
|
|
|
|
{ MODKEY|ControlMask, KEY, toggleview, {.ui = 1 << TAG} }, \
|
|
|
|
{ MODKEY|ShiftMask, KEY, combotag, {.ui = 1 << TAG} }, \
|
2020-02-11 07:27:00 +00:00
|
|
|
{ MODKEY|ControlMask|ShiftMask, KEY, toggletag, {.ui = 1 << TAG} }, \
|
|
|
|
{ MODKEY|Mod4Mask|ShiftMask, KEY, swaptags, {.ui = 1 << TAG} },
|
2020-06-21 07:07:51 +00:00
|
|
|
#elif COMBO_PATCH && TAGOTHERMONITOR_PATCH
|
|
|
|
#define TAGKEYS(KEY,TAG) \
|
|
|
|
{ MODKEY, KEY, comboview, {.ui = 1 << TAG} }, \
|
|
|
|
{ MODKEY|ControlMask, KEY, toggleview, {.ui = 1 << TAG} }, \
|
|
|
|
{ MODKEY|ShiftMask, KEY, combotag, {.ui = 1 << TAG} }, \
|
|
|
|
{ MODKEY|ControlMask|ShiftMask, KEY, toggletag, {.ui = 1 << TAG} }, \
|
|
|
|
{ MODKEY|Mod4Mask, KEY, tagnextmon, {.ui = 1 << TAG} }, \
|
|
|
|
{ MODKEY|Mod4Mask|ControlMask, KEY, tagprevmon, {.ui = 1 << TAG} },
|
2020-02-11 14:35:34 +00:00
|
|
|
#elif COMBO_PATCH
|
|
|
|
#define TAGKEYS(KEY,TAG) \
|
|
|
|
{ MODKEY, KEY, comboview, {.ui = 1 << TAG} }, \
|
|
|
|
{ MODKEY|ControlMask, KEY, toggleview, {.ui = 1 << TAG} }, \
|
|
|
|
{ MODKEY|ShiftMask, KEY, combotag, {.ui = 1 << TAG} }, \
|
|
|
|
{ MODKEY|ControlMask|ShiftMask, KEY, toggletag, {.ui = 1 << TAG} },
|
2020-06-21 07:07:51 +00:00
|
|
|
#elif SWAPTAGS_PATCH && TAGOTHERMONITOR_PATCH
|
|
|
|
#define TAGKEYS(KEY,TAG) \
|
|
|
|
{ MODKEY, KEY, view, {.ui = 1 << TAG} }, \
|
|
|
|
{ MODKEY|ControlMask, KEY, toggleview, {.ui = 1 << TAG} }, \
|
|
|
|
{ MODKEY|ShiftMask, KEY, tag, {.ui = 1 << TAG} }, \
|
|
|
|
{ MODKEY|ControlMask|ShiftMask, KEY, toggletag, {.ui = 1 << TAG} }, \
|
|
|
|
{ MODKEY|Mod4Mask|ShiftMask, KEY, swaptags, {.ui = 1 << TAG} }, \
|
|
|
|
{ MODKEY|Mod4Mask, KEY, tagnextmon, {.ui = 1 << TAG} }, \
|
|
|
|
{ MODKEY|Mod4Mask|ControlMask, KEY, tagprevmon, {.ui = 1 << TAG} },
|
2020-02-11 14:35:34 +00:00
|
|
|
#elif SWAPTAGS_PATCH
|
2019-09-04 22:16:39 +00:00
|
|
|
#define TAGKEYS(KEY,TAG) \
|
|
|
|
{ MODKEY, KEY, view, {.ui = 1 << TAG} }, \
|
|
|
|
{ MODKEY|ControlMask, KEY, toggleview, {.ui = 1 << TAG} }, \
|
|
|
|
{ MODKEY|ShiftMask, KEY, tag, {.ui = 1 << TAG} }, \
|
2020-02-11 07:27:00 +00:00
|
|
|
{ MODKEY|ControlMask|ShiftMask, KEY, toggletag, {.ui = 1 << TAG} }, \
|
|
|
|
{ MODKEY|Mod4Mask|ShiftMask, KEY, swaptags, {.ui = 1 << TAG} },
|
2020-06-21 07:07:51 +00:00
|
|
|
#elif TAGOTHERMONITOR_PATCH
|
|
|
|
#define TAGKEYS(KEY,TAG) \
|
|
|
|
{ MODKEY, KEY, view, {.ui = 1 << TAG} }, \
|
|
|
|
{ MODKEY|ControlMask, KEY, toggleview, {.ui = 1 << TAG} }, \
|
|
|
|
{ MODKEY|ShiftMask, KEY, tag, {.ui = 1 << TAG} }, \
|
|
|
|
{ MODKEY|ControlMask|ShiftMask, KEY, toggletag, {.ui = 1 << TAG} }, \
|
|
|
|
{ MODKEY|Mod4Mask, KEY, tagnextmon, {.ui = 1 << TAG} }, \
|
|
|
|
{ MODKEY|Mod4Mask|ControlMask, KEY, tagprevmon, {.ui = 1 << TAG} },
|
2020-02-11 14:35:34 +00:00
|
|
|
#else
|
|
|
|
#define TAGKEYS(KEY,TAG) \
|
|
|
|
{ MODKEY, KEY, view, {.ui = 1 << TAG} }, \
|
|
|
|
{ MODKEY|ControlMask, KEY, toggleview, {.ui = 1 << TAG} }, \
|
|
|
|
{ MODKEY|ShiftMask, KEY, tag, {.ui = 1 << TAG} }, \
|
|
|
|
{ MODKEY|ControlMask|ShiftMask, KEY, toggletag, {.ui = 1 << TAG} },
|
2020-06-21 07:07:51 +00:00
|
|
|
#endif // COMBO_PATCH / SWAPTAGS_PATCH / TAGOTHERMONITOR_PATCH
|
2020-06-19 21:18:50 +00:00
|
|
|
|
2020-03-23 11:15:50 +00:00
|
|
|
#if STACKER_PATCH
|
|
|
|
#define STACKKEYS(MOD,ACTION) \
|
|
|
|
{ MOD, XK_j, ACTION##stack, {.i = INC(+1) } }, \
|
|
|
|
{ MOD, XK_k, ACTION##stack, {.i = INC(-1) } }, \
|
|
|
|
{ MOD, XK_s, ACTION##stack, {.i = PREVSEL } }, \
|
|
|
|
{ MOD, XK_w, ACTION##stack, {.i = 0 } }, \
|
|
|
|
{ MOD, XK_e, ACTION##stack, {.i = 1 } }, \
|
|
|
|
{ MOD, XK_a, ACTION##stack, {.i = 2 } }, \
|
|
|
|
{ MOD, XK_z, ACTION##stack, {.i = -1 } },
|
|
|
|
#endif // STACKER_PATCH
|
|
|
|
|
2019-10-01 22:03:21 +00:00
|
|
|
#if HOLDBAR_PATCH
|
|
|
|
#define HOLDKEY 0 // replace 0 with the keysym to activate holdbar
|
|
|
|
#endif // HOLDBAR_PATCH
|
|
|
|
|
2019-09-04 22:16:39 +00:00
|
|
|
/* helper for spawning shell commands in the pre dwm-5.0 fashion */
|
|
|
|
#define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } }
|
|
|
|
|
|
|
|
/* commands */
|
2019-11-26 18:54:00 +00:00
|
|
|
#if !NODMENU_PATCH
|
2019-09-04 22:16:39 +00:00
|
|
|
static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */
|
2019-11-26 18:54:00 +00:00
|
|
|
#endif // NODMENU_PATCH
|
|
|
|
static const char *dmenucmd[] = {
|
|
|
|
"dmenu_run",
|
|
|
|
#if !NODMENU_PATCH
|
|
|
|
"-m", dmenumon,
|
|
|
|
#endif // NODMENU_PATCH
|
|
|
|
"-fn", dmenufont,
|
|
|
|
"-nb", normbgcolor,
|
|
|
|
"-nf", normfgcolor,
|
|
|
|
"-sb", selbgcolor,
|
|
|
|
"-sf", selfgcolor,
|
|
|
|
#if DMENUMATCHTOP_PATCH
|
|
|
|
topbar ? NULL : "-b",
|
|
|
|
#endif // DMENUMATCHTOP_PATCH
|
|
|
|
NULL
|
|
|
|
};
|
2019-09-04 22:16:39 +00:00
|
|
|
static const char *termcmd[] = { "st", NULL };
|
|
|
|
|
2020-05-05 17:50:28 +00:00
|
|
|
#if STATUSCMD_PATCH && !DWMBLOCKS_PATCH
|
2020-04-13 12:59:58 +00:00
|
|
|
/* commands spawned when clicking statusbar, the mouse button pressed is exported as BUTTON */
|
|
|
|
static const char *statuscmds[] = { "notify-send Mouse$BUTTON" };
|
|
|
|
static char *statuscmd[] = { "/bin/sh", "-c", NULL, NULL };
|
2020-05-05 17:50:28 +00:00
|
|
|
#endif // STATUSCMD_PATCH | DWMBLOCKS_PATCH
|
2020-04-13 12:59:58 +00:00
|
|
|
|
2019-09-04 22:16:39 +00:00
|
|
|
static Key keys[] = {
|
2019-10-24 06:47:00 +00:00
|
|
|
/* modifier key function argument */
|
2020-05-31 13:14:29 +00:00
|
|
|
#if KEYMODES_PATCH
|
|
|
|
{ MODKEY, XK_Escape, setkeymode, {.ui = COMMANDMODE} },
|
|
|
|
#endif // KEYMODES_PATCH
|
2019-10-24 06:47:00 +00:00
|
|
|
{ MODKEY, XK_p, spawn, {.v = dmenucmd } },
|
|
|
|
{ MODKEY|ShiftMask, XK_Return, spawn, {.v = termcmd } },
|
|
|
|
{ MODKEY, XK_b, togglebar, {0} },
|
2020-03-23 11:15:50 +00:00
|
|
|
#if STACKER_PATCH
|
|
|
|
STACKKEYS(MODKEY, focus)
|
|
|
|
STACKKEYS(MODKEY|ShiftMask, push)
|
|
|
|
#else
|
2019-10-24 06:47:00 +00:00
|
|
|
{ MODKEY, XK_j, focusstack, {.i = +1 } },
|
|
|
|
{ MODKEY, XK_k, focusstack, {.i = -1 } },
|
2020-03-23 11:15:50 +00:00
|
|
|
#endif // STACKER_PATCH
|
2020-01-29 07:31:00 +00:00
|
|
|
#if SWAPFOCUS_PATCH && PERTAG_PATCH
|
|
|
|
{ MODKEY, XK_s, swapfocus, {.i = -1 } },
|
|
|
|
#endif // SWAPFOCUS_PATCH
|
2019-10-07 22:54:06 +00:00
|
|
|
#if SWITCHCOL_PATCH
|
2019-10-24 06:47:00 +00:00
|
|
|
{ MODKEY, XK_v, switchcol, {0} },
|
2019-10-07 22:54:06 +00:00
|
|
|
#endif // SWITCHCOL_PATCH
|
2019-09-07 20:42:01 +00:00
|
|
|
#if ROTATESTACK_PATCH
|
2019-10-24 06:47:00 +00:00
|
|
|
{ MODKEY|Mod4Mask, XK_j, rotatestack, {.i = +1 } },
|
|
|
|
{ MODKEY|Mod4Mask, XK_k, rotatestack, {.i = -1 } },
|
2019-09-07 20:42:01 +00:00
|
|
|
#endif // ROTATESTACK_PATCH
|
2020-01-17 08:54:23 +00:00
|
|
|
#if INPLACEROTATE_PATCH
|
|
|
|
{ MODKEY|Mod4Mask|ShiftMask, XK_j, inplacerotate, {.i = +1} },
|
|
|
|
{ MODKEY|Mod4Mask|ShiftMask, XK_k, inplacerotate, {.i = -1} },
|
|
|
|
#endif // INPLACEROTATE_PATCH
|
2019-09-14 22:22:24 +00:00
|
|
|
#if PUSH_PATCH || PUSH_NO_MASTER_PATCH
|
2019-10-24 06:47:00 +00:00
|
|
|
{ MODKEY|ControlMask, XK_j, pushdown, {0} },
|
|
|
|
{ MODKEY|ControlMask, XK_k, pushup, {0} },
|
2019-09-14 22:22:24 +00:00
|
|
|
#endif // PUSH_PATCH / PUSH_NO_MASTER_PATCH
|
2019-10-24 06:47:00 +00:00
|
|
|
{ MODKEY, XK_i, incnmaster, {.i = +1 } },
|
|
|
|
{ MODKEY, XK_d, incnmaster, {.i = -1 } },
|
2019-10-07 22:54:06 +00:00
|
|
|
#if FLEXTILE_DELUXE_LAYOUT
|
2019-10-24 06:47:00 +00:00
|
|
|
{ MODKEY|ControlMask, XK_i, incnstack, {.i = +1 } },
|
|
|
|
{ MODKEY|ControlMask, XK_u, incnstack, {.i = -1 } },
|
2019-10-07 22:54:06 +00:00
|
|
|
#endif // FLEXTILE_DELUXE_LAYOUT
|
2019-10-24 06:47:00 +00:00
|
|
|
{ MODKEY, XK_h, setmfact, {.f = -0.05} },
|
|
|
|
{ MODKEY, XK_l, setmfact, {.f = +0.05} },
|
2019-09-08 22:18:47 +00:00
|
|
|
#if CFACTS_PATCH
|
2019-10-24 06:47:00 +00:00
|
|
|
{ MODKEY|ShiftMask, XK_h, setcfact, {.f = +0.25} },
|
|
|
|
{ MODKEY|ShiftMask, XK_l, setcfact, {.f = -0.25} },
|
2020-03-25 14:15:47 +00:00
|
|
|
{ MODKEY|ShiftMask, XK_o, setcfact, {0} },
|
2019-09-08 22:18:47 +00:00
|
|
|
#endif // CFACTS_PATCH
|
2020-05-21 16:55:47 +00:00
|
|
|
#if MOVERESIZE_PATCH
|
|
|
|
{ MODKEY|Mod4Mask, XK_Down, moveresize, {.v = "0x 25y 0w 0h" } },
|
|
|
|
{ MODKEY|Mod4Mask, XK_Up, moveresize, {.v = "0x -25y 0w 0h" } },
|
|
|
|
{ MODKEY|Mod4Mask, XK_Right, moveresize, {.v = "25x 0y 0w 0h" } },
|
|
|
|
{ MODKEY|Mod4Mask, XK_Left, moveresize, {.v = "-25x 0y 0w 0h" } },
|
|
|
|
{ MODKEY|Mod4Mask|ShiftMask, XK_Down, moveresize, {.v = "0x 0y 0w 25h" } },
|
|
|
|
{ MODKEY|Mod4Mask|ShiftMask, XK_Up, moveresize, {.v = "0x 0y 0w -25h" } },
|
|
|
|
{ MODKEY|Mod4Mask|ShiftMask, XK_Right, moveresize, {.v = "0x 0y 25w 0h" } },
|
|
|
|
{ MODKEY|Mod4Mask|ShiftMask, XK_Left, moveresize, {.v = "0x 0y -25w 0h" } },
|
|
|
|
#endif // MOVERESIZE_PATCH
|
2019-10-04 21:13:55 +00:00
|
|
|
#if MOVESTACK_PATCH
|
2019-10-24 06:47:00 +00:00
|
|
|
{ MODKEY|ShiftMask, XK_j, movestack, {.i = +1 } },
|
|
|
|
{ MODKEY|ShiftMask, XK_k, movestack, {.i = -1 } },
|
2019-10-04 21:13:55 +00:00
|
|
|
#endif // MOVESTACK_PATCH
|
2020-01-26 06:32:00 +00:00
|
|
|
#if TRANSFER_PATCH
|
|
|
|
{ MODKEY, XK_x, transfer, {0} },
|
|
|
|
#endif // TRANSFER_PATCH
|
2020-02-02 10:55:19 +00:00
|
|
|
#if TRANSFER_ALL_PATCH
|
|
|
|
{ MODKEY|ControlMask, XK_x, transferall, {0} },
|
|
|
|
#endif // TRANSFER_ALL_PATCH
|
2019-10-24 06:47:00 +00:00
|
|
|
{ MODKEY, XK_Return, zoom, {0} },
|
2019-09-08 22:18:47 +00:00
|
|
|
#if VANITYGAPS_PATCH
|
2019-10-24 06:47:00 +00:00
|
|
|
{ MODKEY|Mod4Mask, XK_u, incrgaps, {.i = +1 } },
|
|
|
|
{ MODKEY|Mod4Mask|ShiftMask, XK_u, incrgaps, {.i = -1 } },
|
|
|
|
{ MODKEY|Mod4Mask, XK_i, incrigaps, {.i = +1 } },
|
|
|
|
{ MODKEY|Mod4Mask|ShiftMask, XK_i, incrigaps, {.i = -1 } },
|
|
|
|
{ MODKEY|Mod4Mask, XK_o, incrogaps, {.i = +1 } },
|
|
|
|
{ MODKEY|Mod4Mask|ShiftMask, XK_o, incrogaps, {.i = -1 } },
|
|
|
|
{ MODKEY|Mod4Mask, XK_6, incrihgaps, {.i = +1 } },
|
|
|
|
{ MODKEY|Mod4Mask|ShiftMask, XK_6, incrihgaps, {.i = -1 } },
|
|
|
|
{ MODKEY|Mod4Mask, XK_7, incrivgaps, {.i = +1 } },
|
|
|
|
{ MODKEY|Mod4Mask|ShiftMask, XK_7, incrivgaps, {.i = -1 } },
|
|
|
|
{ MODKEY|Mod4Mask, XK_8, incrohgaps, {.i = +1 } },
|
|
|
|
{ MODKEY|Mod4Mask|ShiftMask, XK_8, incrohgaps, {.i = -1 } },
|
|
|
|
{ MODKEY|Mod4Mask, XK_9, incrovgaps, {.i = +1 } },
|
|
|
|
{ MODKEY|Mod4Mask|ShiftMask, XK_9, incrovgaps, {.i = -1 } },
|
|
|
|
{ MODKEY|Mod4Mask, XK_0, togglegaps, {0} },
|
|
|
|
{ MODKEY|Mod4Mask|ShiftMask, XK_0, defaultgaps, {0} },
|
2019-09-08 22:18:47 +00:00
|
|
|
#endif // VANITYGAPS_PATCH
|
2019-10-24 06:47:00 +00:00
|
|
|
{ MODKEY, XK_Tab, view, {0} },
|
2020-01-29 13:22:24 +00:00
|
|
|
#if SHIFTVIEW_PATCH
|
|
|
|
{ MODKEY|ShiftMask, XK_Tab, shiftview, { .i = -1 } },
|
|
|
|
{ MODKEY|ShiftMask, XK_backslash, shiftview, { .i = +1 } },
|
|
|
|
#endif // SHIFTVIEW_PATCH
|
2020-05-03 14:09:05 +00:00
|
|
|
#if SHIFTVIEW_CLIENTS_PATCH
|
|
|
|
{ MODKEY|Mod4Mask, XK_Tab, shiftviewclients, { .i = -1 } },
|
|
|
|
{ MODKEY|Mod4Mask, XK_backslash, shiftviewclients, { .i = +1 } },
|
|
|
|
#endif // SHIFTVIEW_CLIENTS_PATCH
|
2019-09-10 06:27:00 +00:00
|
|
|
#if AWESOMEBAR_PATCH
|
2020-03-23 11:15:50 +00:00
|
|
|
{ MODKEY|ControlMask, XK_z, showhideclient, {0} },
|
2019-09-10 06:27:00 +00:00
|
|
|
#endif // AWESOMEBAR_PATCH
|
2019-10-24 06:47:00 +00:00
|
|
|
{ MODKEY|ShiftMask, XK_c, killclient, {0} },
|
2019-10-05 20:55:46 +00:00
|
|
|
#if KILLUNSEL_PATCH
|
2019-10-24 06:47:00 +00:00
|
|
|
{ MODKEY|ShiftMask, XK_x, killunsel, {0} },
|
2019-10-05 20:55:46 +00:00
|
|
|
#endif // KILLUNSEL_PATCH
|
2019-09-14 21:58:04 +00:00
|
|
|
#if SELFRESTART_PATCH
|
2019-10-24 06:47:00 +00:00
|
|
|
{ MODKEY|ShiftMask, XK_r, self_restart, {0} },
|
2019-09-14 21:58:04 +00:00
|
|
|
#endif // SELFRESTART_PATCH
|
2019-10-24 06:47:00 +00:00
|
|
|
{ MODKEY|ShiftMask, XK_q, quit, {0} },
|
2019-10-02 21:22:04 +00:00
|
|
|
#if RESTARTSIG_PATCH
|
2019-10-24 06:47:00 +00:00
|
|
|
{ MODKEY|ControlMask|ShiftMask, XK_q, quit, {1} },
|
2019-10-02 21:22:04 +00:00
|
|
|
#endif // RESTARTSIG_PATCH
|
2019-10-02 22:10:08 +00:00
|
|
|
#if FOCUSURGENT_PATCH
|
2019-10-24 06:47:00 +00:00
|
|
|
{ MODKEY, XK_u, focusurgent, {0} },
|
2019-10-02 22:10:08 +00:00
|
|
|
#endif // FOCUSURGENT_PATCH
|
2019-10-01 22:03:21 +00:00
|
|
|
#if HOLDBAR_PATCH
|
2019-10-24 06:47:00 +00:00
|
|
|
{ 0, HOLDKEY, holdbar, {0} },
|
2019-10-01 22:03:21 +00:00
|
|
|
#endif // HOLDBAR_PATCH
|
2019-09-15 21:33:43 +00:00
|
|
|
#if WINVIEW_PATCH
|
2019-10-24 06:47:00 +00:00
|
|
|
{ MODKEY, XK_o, winview, {0} },
|
2019-09-15 21:33:43 +00:00
|
|
|
#endif // WINVIEW_PATCH
|
2020-02-11 17:31:11 +00:00
|
|
|
#if XRDB_PATCH && !VTCOLORS_PATCH
|
2019-10-24 06:47:00 +00:00
|
|
|
{ MODKEY|ShiftMask, XK_F5, xrdb, {.v = NULL } },
|
2019-09-15 20:45:22 +00:00
|
|
|
#endif // XRDB_PATCH
|
2019-10-24 06:47:00 +00:00
|
|
|
{ MODKEY, XK_t, setlayout, {.v = &layouts[0]} },
|
|
|
|
{ MODKEY, XK_f, setlayout, {.v = &layouts[1]} },
|
|
|
|
{ MODKEY, XK_m, setlayout, {.v = &layouts[2]} },
|
2019-10-08 20:57:21 +00:00
|
|
|
#if COLUMNS_LAYOUT
|
2019-10-24 06:47:00 +00:00
|
|
|
{ MODKEY, XK_c, setlayout, {.v = &layouts[3]} },
|
2019-10-08 20:57:21 +00:00
|
|
|
#endif // COLUMNS_LAYOUT
|
2019-09-30 21:52:51 +00:00
|
|
|
#if FLEXTILE_DELUXE_LAYOUT
|
2020-05-01 14:45:25 +00:00
|
|
|
{ MODKEY|ControlMask, XK_t, rotatelayoutaxis, {.i = +1 } }, /* flextile, 1 = layout axis */
|
|
|
|
{ MODKEY|ControlMask, XK_Tab, rotatelayoutaxis, {.i = +2 } }, /* flextile, 2 = master axis */
|
|
|
|
{ MODKEY|ControlMask|ShiftMask, XK_Tab, rotatelayoutaxis, {.i = +3 } }, /* flextile, 3 = stack axis */
|
|
|
|
{ MODKEY|ControlMask|Mod1Mask, XK_Tab, rotatelayoutaxis, {.i = +4 } }, /* flextile, 4 = secondary stack axis */
|
|
|
|
{ MODKEY|Mod5Mask, XK_t, rotatelayoutaxis, {.i = -1 } }, /* flextile, 1 = layout axis */
|
|
|
|
{ MODKEY|Mod5Mask, XK_Tab, rotatelayoutaxis, {.i = -2 } }, /* flextile, 2 = master axis */
|
|
|
|
{ MODKEY|Mod5Mask|ShiftMask, XK_Tab, rotatelayoutaxis, {.i = -3 } }, /* flextile, 3 = stack axis */
|
|
|
|
{ MODKEY|Mod5Mask|Mod1Mask, XK_Tab, rotatelayoutaxis, {.i = -4 } }, /* flextile, 4 = secondary stack axis */
|
2019-10-24 06:47:00 +00:00
|
|
|
{ MODKEY|ControlMask, XK_Return, mirrorlayout, {0} }, /* flextile, flip master and stack areas */
|
2019-09-30 21:52:51 +00:00
|
|
|
#endif // FLEXTILE_DELUXE_LAYOUT
|
2019-10-24 06:47:00 +00:00
|
|
|
{ MODKEY, XK_space, setlayout, {0} },
|
|
|
|
{ MODKEY|ShiftMask, XK_space, togglefloating, {0} },
|
2019-10-04 20:46:47 +00:00
|
|
|
#if MAXIMIZE_PATCH
|
2019-10-24 06:47:00 +00:00
|
|
|
{ MODKEY|ControlMask|ShiftMask, XK_h, togglehorizontalmax, {0} },
|
|
|
|
{ MODKEY|ControlMask|ShiftMask, XK_l, togglehorizontalmax, {0} },
|
|
|
|
{ MODKEY|ControlMask|ShiftMask, XK_j, toggleverticalmax, {0} },
|
|
|
|
{ MODKEY|ControlMask|ShiftMask, XK_k, toggleverticalmax, {0} },
|
2019-11-04 07:17:00 +00:00
|
|
|
{ MODKEY|ControlMask, XK_m, togglemax, {0} },
|
2019-10-04 20:46:47 +00:00
|
|
|
#endif // MAXIMIZE_PATCH
|
2020-06-05 09:23:22 +00:00
|
|
|
#if SCRATCHPADS_PATCH
|
[dwm][PATCH] Multiple scratchpads
This patch enables multiple scratchpads, each with one assigned window.
This enables the same scratchpad workflow that you have in i3.
Scratchpads are implemented as special tags, whose mask does not
apply to new spawned windows. To assign a window to a scratchpad you
have to set up a rule, as you do with regular tags.
Windows tagged with scratchpad tags can be set floating or not in the
rules array. Most users would probably want them floating (i3 style),
but having them tiled does also perfectly work and might fit better the
DWM approach. In case they are set floating, the patch moves them to the
center of the screen whenever the are shown. The patch can easily be
modified to make this last feature configurable in the rules array (see
the center patch).
The togglescratch function, borrowed from the previous scratchpad patch
and slightly modified, can be used to spawn a registered scratchpad
process or toggle its view. This function looks for a window tagged on
the selected scratchpad. If it is found its view is toggled. If it is
not found the corresponding registered command is spawned. The
config.def.h shows three examples of its use to spawn a terminal in the
first scratchpad tag, a second terminal running ranger on the second
scratchpad tag and the keepassxc application to manage passwords on a
third scratchpad tag.
If you prefer to spawn your scratchpad applications from the startup
script, you might opt for binding keys to toggleview instead, as
scratchpads are just special tags (you may even extend the TAGKEYS macro
to generalize the key bindings).
2020-04-16 14:39:22 +00:00
|
|
|
{ MODKEY, XK_grave, togglescratch, {.ui = 0 } },
|
|
|
|
{ MODKEY|ControlMask, XK_grave, togglescratch, {.ui = 1 } },
|
|
|
|
{ MODKEY|ShiftMask, XK_grave, togglescratch, {.ui = 2 } },
|
2020-06-05 09:23:22 +00:00
|
|
|
#endif // SCRATCHPADS_PATCH
|
2019-10-01 22:03:21 +00:00
|
|
|
#if UNFLOATVISIBLE_PATCH
|
2019-10-24 06:47:00 +00:00
|
|
|
{ MODKEY|Mod4Mask, XK_space, unfloatvisible, {0} },
|
|
|
|
{ MODKEY|ShiftMask, XK_t, unfloatvisible, {.v = &layouts[0]} },
|
2019-10-01 22:03:21 +00:00
|
|
|
#endif // UNFLOATVISIBLE_PATCH
|
2019-09-05 21:27:33 +00:00
|
|
|
#if TOGGLEFULLSCREEN_PATCH
|
2019-10-24 06:47:00 +00:00
|
|
|
{ MODKEY, XK_y, togglefullscreen, {0} },
|
2019-09-05 21:27:33 +00:00
|
|
|
#endif // TOGGLEFULLSCREEN_PATCH
|
2020-03-20 15:45:20 +00:00
|
|
|
#if !FAKEFULLSCREEN_PATCH && FAKEFULLSCREEN_CLIENT_PATCH
|
2019-11-21 11:15:16 +00:00
|
|
|
{ MODKEY|ShiftMask, XK_y, togglefakefullscreen, {0} },
|
|
|
|
#endif // FAKEFULLSCREEN_CLIENT_PATCH
|
2019-10-07 22:54:06 +00:00
|
|
|
#if FULLSCREEN_PATCH
|
2019-10-24 06:47:00 +00:00
|
|
|
{ MODKEY|ShiftMask, XK_f, fullscreen, {0} },
|
2019-10-07 22:54:06 +00:00
|
|
|
#endif // FULLSCREEN_PATCH
|
2019-09-14 22:43:35 +00:00
|
|
|
#if STICKY_PATCH
|
2020-01-29 07:31:00 +00:00
|
|
|
{ MODKEY|ShiftMask, XK_s, togglesticky, {0} },
|
2019-09-14 22:43:35 +00:00
|
|
|
#endif // STICKY_PATCH
|
2020-02-09 13:55:40 +00:00
|
|
|
#if SCRATCHPAD_ALT_1_PATCH
|
|
|
|
{ MODKEY, XK_minus, scratchpad_show, {0} },
|
|
|
|
{ MODKEY|ShiftMask, XK_minus, scratchpad_hide, {0} },
|
|
|
|
{ MODKEY, XK_equal, scratchpad_remove, {0} },
|
|
|
|
#else
|
2019-10-24 06:47:00 +00:00
|
|
|
{ MODKEY, XK_0, view, {.ui = ~0 } },
|
|
|
|
{ MODKEY|ShiftMask, XK_0, tag, {.ui = ~0 } },
|
2020-02-09 13:55:40 +00:00
|
|
|
#endif // SCRATCHPAD_ALT_1_PATCH
|
2019-10-24 06:47:00 +00:00
|
|
|
{ MODKEY, XK_comma, focusmon, {.i = -1 } },
|
|
|
|
{ MODKEY, XK_period, focusmon, {.i = +1 } },
|
|
|
|
{ MODKEY|ShiftMask, XK_comma, tagmon, {.i = -1 } },
|
|
|
|
{ MODKEY|ShiftMask, XK_period, tagmon, {.i = +1 } },
|
2019-10-02 21:57:25 +00:00
|
|
|
#if FOCUSADJACENTTAG_PATCH
|
2019-10-24 06:47:00 +00:00
|
|
|
{ MODKEY, XK_Left, viewtoleft, {0} },
|
|
|
|
{ MODKEY, XK_Right, viewtoright, {0} },
|
|
|
|
{ MODKEY|ShiftMask, XK_Left, tagtoleft, {0} },
|
|
|
|
{ MODKEY|ShiftMask, XK_Right, tagtoright, {0} },
|
|
|
|
{ MODKEY|ControlMask, XK_Left, tagandviewtoleft, {0} },
|
|
|
|
{ MODKEY|ControlMask, XK_Right, tagandviewtoright, {0} },
|
2019-10-02 21:57:25 +00:00
|
|
|
#endif // FOCUSADJACENTTAG_PATCH
|
2019-10-04 21:56:00 +00:00
|
|
|
#if TAGALL_PATCH
|
2019-10-24 06:47:00 +00:00
|
|
|
{ MODKEY|ShiftMask, XK_F1, tagall, {.v = "F1"} },
|
|
|
|
{ MODKEY|ShiftMask, XK_F2, tagall, {.v = "F2"} },
|
|
|
|
{ MODKEY|ShiftMask, XK_F3, tagall, {.v = "F3"} },
|
|
|
|
{ MODKEY|ShiftMask, XK_F4, tagall, {.v = "F4"} },
|
|
|
|
{ MODKEY|ShiftMask, XK_F5, tagall, {.v = "F5"} },
|
|
|
|
{ MODKEY|ShiftMask, XK_F6, tagall, {.v = "F6"} },
|
|
|
|
{ MODKEY|ShiftMask, XK_F7, tagall, {.v = "F7"} },
|
|
|
|
{ MODKEY|ShiftMask, XK_F8, tagall, {.v = "F8"} },
|
|
|
|
{ MODKEY|ShiftMask, XK_F9, tagall, {.v = "F9"} },
|
|
|
|
{ MODKEY|ControlMask, XK_F1, tagall, {.v = "1"} },
|
|
|
|
{ MODKEY|ControlMask, XK_F2, tagall, {.v = "2"} },
|
|
|
|
{ MODKEY|ControlMask, XK_F3, tagall, {.v = "3"} },
|
|
|
|
{ MODKEY|ControlMask, XK_F4, tagall, {.v = "4"} },
|
|
|
|
{ MODKEY|ControlMask, XK_F5, tagall, {.v = "5"} },
|
|
|
|
{ MODKEY|ControlMask, XK_F6, tagall, {.v = "6"} },
|
|
|
|
{ MODKEY|ControlMask, XK_F7, tagall, {.v = "7"} },
|
|
|
|
{ MODKEY|ControlMask, XK_F8, tagall, {.v = "8"} },
|
|
|
|
{ MODKEY|ControlMask, XK_F9, tagall, {.v = "9"} },
|
2019-10-04 21:56:00 +00:00
|
|
|
#endif // TAGALL_PATCH
|
2019-09-05 21:59:13 +00:00
|
|
|
#if TAGALLMON_PATCH
|
2019-10-24 06:47:00 +00:00
|
|
|
{ MODKEY|Mod4Mask|ShiftMask, XK_comma, tagallmon, {.i = +1 } },
|
|
|
|
{ MODKEY|Mod4Mask|ShiftMask, XK_period, tagallmon, {.i = -1 } },
|
2019-09-05 21:59:13 +00:00
|
|
|
#endif // TAGALLMON_PATCH
|
|
|
|
#if TAGSWAPMON_PATCH
|
2019-10-24 06:47:00 +00:00
|
|
|
{ MODKEY|Mod4Mask|ControlMask, XK_comma, tagswapmon, {.i = +1 } },
|
|
|
|
{ MODKEY|Mod4Mask|ControlMask, XK_period, tagswapmon, {.i = -1 } },
|
2019-09-05 21:59:13 +00:00
|
|
|
#endif // TAGSWAPMON_PATCH
|
2019-09-09 21:27:10 +00:00
|
|
|
#if ALTERNATIVE_TAGS_PATCH
|
2019-10-24 06:47:00 +00:00
|
|
|
{ MODKEY, XK_n, togglealttag, {0} },
|
2019-09-09 21:27:10 +00:00
|
|
|
#endif // ALTERNATIVE_TAGS_PATCH
|
2019-10-05 21:28:50 +00:00
|
|
|
#if TAGGRID_PATCH
|
2019-10-24 06:47:00 +00:00
|
|
|
{ MODKEY|ControlMask, XK_Up, switchtag, { .ui = SWITCHTAG_UP | SWITCHTAG_VIEW } },
|
|
|
|
{ MODKEY|ControlMask, XK_Down, switchtag, { .ui = SWITCHTAG_DOWN | SWITCHTAG_VIEW } },
|
|
|
|
{ MODKEY|ControlMask, XK_Right, switchtag, { .ui = SWITCHTAG_RIGHT | SWITCHTAG_VIEW } },
|
|
|
|
{ MODKEY|ControlMask, XK_Left, switchtag, { .ui = SWITCHTAG_LEFT | SWITCHTAG_VIEW } },
|
|
|
|
{ MODKEY|Mod4Mask, XK_Up, switchtag, { .ui = SWITCHTAG_UP | SWITCHTAG_TAG | SWITCHTAG_VIEW } },
|
|
|
|
{ MODKEY|Mod4Mask, XK_Down, switchtag, { .ui = SWITCHTAG_DOWN | SWITCHTAG_TAG | SWITCHTAG_VIEW } },
|
|
|
|
{ MODKEY|Mod4Mask, XK_Right, switchtag, { .ui = SWITCHTAG_RIGHT | SWITCHTAG_TAG | SWITCHTAG_VIEW } },
|
|
|
|
{ MODKEY|Mod4Mask, XK_Left, switchtag, { .ui = SWITCHTAG_LEFT | SWITCHTAG_TAG | SWITCHTAG_VIEW } },
|
2019-10-05 21:28:50 +00:00
|
|
|
#endif // TAGGRID_PATCH
|
2020-05-21 17:58:11 +00:00
|
|
|
#if MOVEPLACE_PATCH
|
|
|
|
{ MODKEY, XK_KP_7, moveplace, {.ui = WIN_NW }}, /* XK_KP_Home, */
|
|
|
|
{ MODKEY, XK_KP_8, moveplace, {.ui = WIN_N }}, /* XK_KP_Up, */
|
|
|
|
{ MODKEY, XK_KP_9, moveplace, {.ui = WIN_NE }}, /* XK_KP_Prior, */
|
|
|
|
{ MODKEY, XK_KP_4, moveplace, {.ui = WIN_W }}, /* XK_KP_Left, */
|
|
|
|
{ MODKEY, XK_KP_5, moveplace, {.ui = WIN_C }}, /* XK_KP_Begin, */
|
|
|
|
{ MODKEY, XK_KP_6, moveplace, {.ui = WIN_E }}, /* XK_KP_Right, */
|
|
|
|
{ MODKEY, XK_KP_1, moveplace, {.ui = WIN_SW }}, /* XK_KP_End, */
|
|
|
|
{ MODKEY, XK_KP_2, moveplace, {.ui = WIN_S }}, /* XK_KP_Down, */
|
|
|
|
{ MODKEY, XK_KP_3, moveplace, {.ui = WIN_SE }}, /* XK_KP_Next, */
|
|
|
|
#endif // MOVEPLACE_PATCH
|
2019-10-24 06:47:00 +00:00
|
|
|
#if EXRESIZE_PATCH
|
2020-05-21 17:58:11 +00:00
|
|
|
{ MODKEY, XK_KP_7, explace, {.ui = EX_NW }}, /* XK_KP_Home, */
|
|
|
|
{ MODKEY, XK_KP_8, explace, {.ui = EX_N }}, /* XK_KP_Up, */
|
|
|
|
{ MODKEY, XK_KP_9, explace, {.ui = EX_NE }}, /* XK_KP_Prior, */
|
|
|
|
{ MODKEY, XK_KP_4, explace, {.ui = EX_W }}, /* XK_KP_Left, */
|
|
|
|
{ MODKEY, XK_KP_5, explace, {.ui = EX_C }}, /* XK_KP_Begin, */
|
|
|
|
{ MODKEY, XK_KP_6, explace, {.ui = EX_E }}, /* XK_KP_Right, */
|
|
|
|
{ MODKEY, XK_KP_1, explace, {.ui = EX_SW }}, /* XK_KP_End, */
|
|
|
|
{ MODKEY, XK_KP_2, explace, {.ui = EX_S }}, /* XK_KP_Down, */
|
|
|
|
{ MODKEY, XK_KP_3, explace, {.ui = EX_SE }}, /* XK_KP_Next, */
|
2019-10-24 06:47:00 +00:00
|
|
|
|
2020-05-21 17:58:11 +00:00
|
|
|
{ MODKEY|ShiftMask, XK_KP_8, exresize, {.v = (int []){ 0, 25 }}}, /* XK_KP_Up, */
|
|
|
|
{ MODKEY|ShiftMask, XK_KP_2, exresize, {.v = (int []){ 0, -25 }}}, /* XK_KP_Down, */
|
|
|
|
{ MODKEY|ShiftMask, XK_KP_6, exresize, {.v = (int []){ 25, 0 }}}, /* XK_KP_Right, */
|
|
|
|
{ MODKEY|ShiftMask, XK_KP_4, exresize, {.v = (int []){ -25, 0 }}}, /* XK_KP_Left, */
|
|
|
|
{ MODKEY|ShiftMask, XK_KP_5, exresize, {.v = (int []){ 25, 25 }}}, /* XK_KP_Begin, */
|
|
|
|
{ MODKEY|ShiftMask|ControlMask, XK_KP_5, exresize, {.v = (int []){ -25, -25 }}}, /* XK_KP_Begin, */
|
2019-10-24 06:47:00 +00:00
|
|
|
|
2020-05-21 17:58:11 +00:00
|
|
|
{ MODKEY|ControlMask, XK_KP_6, togglehorizontalexpand, {.i = +1} }, /* XK_KP_Right, */
|
|
|
|
{ MODKEY|ControlMask, XK_KP_3, togglehorizontalexpand, {.i = 0} }, /* XK_KP_Next, */
|
|
|
|
{ MODKEY|ControlMask, XK_KP_4, togglehorizontalexpand, {.i = -1} }, /* XK_KP_Left, */
|
|
|
|
{ MODKEY|ControlMask, XK_KP_8, toggleverticalexpand, {.i = +1} }, /* XK_KP_Up, */
|
|
|
|
{ MODKEY|ControlMask, XK_KP_1, toggleverticalexpand, {.i = 0} }, /* XK_KP_End, */
|
|
|
|
{ MODKEY|ControlMask, XK_KP_2, toggleverticalexpand, {.i = -1} }, /* XK_KP_Down, */
|
|
|
|
{ MODKEY|ControlMask, XK_KP_9, togglemaximize, {.i = -1} }, /* XK_KP_Prior, */
|
|
|
|
{ MODKEY|ControlMask, XK_KP_7, togglemaximize, {.i = +1} }, /* XK_KP_Home, */
|
|
|
|
{ MODKEY|ControlMask, XK_KP_5, togglemaximize, {.i = 0} }, /* XK_KP_Begin, */
|
2019-10-24 06:47:00 +00:00
|
|
|
#endif // EXRESIZE_PATCH
|
2020-06-21 13:33:29 +00:00
|
|
|
#if FLOATPOS_PATCH
|
|
|
|
/* Note that due to key limitations the below example kybindings are defined with a Mod3Mask,
|
|
|
|
* which is not always readily available. Refer to the patch wiki for more details. */
|
|
|
|
/* Client position is limited to monitor window area */
|
2020-06-23 08:15:37 +00:00
|
|
|
{ Mod3Mask, XK_u, floatpos, {.v = "-26x -26y" } }, // ↖
|
|
|
|
{ Mod3Mask, XK_i, floatpos, {.v = " 0x -26y" } }, // ↑
|
|
|
|
{ Mod3Mask, XK_o, floatpos, {.v = " 26x -26y" } }, // ↗
|
|
|
|
{ Mod3Mask, XK_j, floatpos, {.v = "-26x 0y" } }, // ←
|
|
|
|
{ Mod3Mask, XK_l, floatpos, {.v = " 26x 0y" } }, // →
|
|
|
|
{ Mod3Mask, XK_m, floatpos, {.v = "-26x 26y" } }, // ↙
|
|
|
|
{ Mod3Mask, XK_comma, floatpos, {.v = " 0x 26y" } }, // ↓
|
|
|
|
{ Mod3Mask, XK_period, floatpos, {.v = " 26x 26y" } }, // ↘
|
2020-06-21 13:33:29 +00:00
|
|
|
/* Absolute positioning (allows moving windows between monitors) */
|
2020-06-23 08:15:37 +00:00
|
|
|
{ Mod3Mask|ControlMask, XK_u, floatpos, {.v = "-26a -26a" } }, // ↖
|
|
|
|
{ Mod3Mask|ControlMask, XK_i, floatpos, {.v = " 0a -26a" } }, // ↑
|
|
|
|
{ Mod3Mask|ControlMask, XK_o, floatpos, {.v = " 26a -26a" } }, // ↗
|
|
|
|
{ Mod3Mask|ControlMask, XK_j, floatpos, {.v = "-26a 0a" } }, // ←
|
|
|
|
{ Mod3Mask|ControlMask, XK_l, floatpos, {.v = " 26a 0a" } }, // →
|
|
|
|
{ Mod3Mask|ControlMask, XK_m, floatpos, {.v = "-26a 26a" } }, // ↙
|
|
|
|
{ Mod3Mask|ControlMask, XK_comma, floatpos, {.v = " 0a 26a" } }, // ↓
|
|
|
|
{ Mod3Mask|ControlMask, XK_period, floatpos, {.v = " 26a 26a" } }, // ↘
|
2020-06-21 13:33:29 +00:00
|
|
|
/* Resize client, client center position is fixed which means that client expands in all directions */
|
2020-06-23 08:15:37 +00:00
|
|
|
{ Mod3Mask|ShiftMask, XK_u, floatpos, {.v = "-26w -26h" } }, // ↖
|
|
|
|
{ Mod3Mask|ShiftMask, XK_i, floatpos, {.v = " 0w -26h" } }, // ↑
|
|
|
|
{ Mod3Mask|ShiftMask, XK_o, floatpos, {.v = " 26w -26h" } }, // ↗
|
|
|
|
{ Mod3Mask|ShiftMask, XK_j, floatpos, {.v = "-26w 0h" } }, // ←
|
|
|
|
{ Mod3Mask|ShiftMask, XK_k, floatpos, {.v = "800W 800H" } }, // ·
|
|
|
|
{ Mod3Mask|ShiftMask, XK_l, floatpos, {.v = " 26w 0h" } }, // →
|
|
|
|
{ Mod3Mask|ShiftMask, XK_m, floatpos, {.v = "-26w 26h" } }, // ↙
|
|
|
|
{ Mod3Mask|ShiftMask, XK_comma, floatpos, {.v = " 0w 26h" } }, // ↓
|
|
|
|
{ Mod3Mask|ShiftMask, XK_period, floatpos, {.v = " 26w 26h" } }, // ↘
|
2020-06-21 13:33:29 +00:00
|
|
|
/* Client is positioned in a floating grid, movement is relative to client's current position */
|
2020-06-23 08:15:37 +00:00
|
|
|
{ Mod3Mask|Mod1Mask, XK_u, floatpos, {.v = "-1p -1p" } }, // ↖
|
|
|
|
{ Mod3Mask|Mod1Mask, XK_i, floatpos, {.v = " 0p -1p" } }, // ↑
|
|
|
|
{ Mod3Mask|Mod1Mask, XK_o, floatpos, {.v = " 1p -1p" } }, // ↗
|
|
|
|
{ Mod3Mask|Mod1Mask, XK_j, floatpos, {.v = "-1p 0p" } }, // ←
|
|
|
|
{ Mod3Mask|Mod1Mask, XK_k, floatpos, {.v = " 0p 0p" } }, // ·
|
|
|
|
{ Mod3Mask|Mod1Mask, XK_l, floatpos, {.v = " 1p 0p" } }, // →
|
|
|
|
{ Mod3Mask|Mod1Mask, XK_m, floatpos, {.v = "-1p 1p" } }, // ↙
|
|
|
|
{ Mod3Mask|Mod1Mask, XK_comma, floatpos, {.v = " 0p 1p" } }, // ↓
|
|
|
|
{ Mod3Mask|Mod1Mask, XK_period, floatpos, {.v = " 1p 1p" } }, // ↘
|
2020-06-21 13:33:29 +00:00
|
|
|
#endif // FLOATPOS_PATCH
|
2019-09-14 21:28:04 +00:00
|
|
|
#if SETBORDERPX_PATCH
|
2020-02-09 13:55:40 +00:00
|
|
|
{ MODKEY|ControlMask, XK_minus, setborderpx, {.i = -1 } },
|
|
|
|
{ MODKEY|ControlMask, XK_plus, setborderpx, {.i = +1 } },
|
|
|
|
{ MODKEY|ControlMask, XK_numbersign, setborderpx, {.i = 0 } },
|
2019-09-14 21:28:04 +00:00
|
|
|
#endif // SETBORDERPX_PATCH
|
2019-09-07 20:27:06 +00:00
|
|
|
#if CYCLELAYOUTS_PATCH
|
2019-10-24 06:47:00 +00:00
|
|
|
{ MODKEY|ControlMask, XK_comma, cyclelayout, {.i = -1 } },
|
|
|
|
{ MODKEY|ControlMask, XK_period, cyclelayout, {.i = +1 } },
|
2019-09-07 20:27:06 +00:00
|
|
|
#endif // CYCLELAYOUTS_PATCH
|
2019-10-10 21:09:07 +00:00
|
|
|
#if MDPCONTROL_PATCH
|
2019-10-24 06:47:00 +00:00
|
|
|
{ MODKEY, XK_F1, mpdchange, {.i = -1} },
|
|
|
|
{ MODKEY, XK_F2, mpdchange, {.i = +1} },
|
|
|
|
{ MODKEY, XK_Escape, mpdcontrol, {0} },
|
2019-10-10 21:09:07 +00:00
|
|
|
#endif // MDPCONTROL_PATCH
|
2019-10-24 06:47:00 +00:00
|
|
|
TAGKEYS( XK_1, 0)
|
|
|
|
TAGKEYS( XK_2, 1)
|
|
|
|
TAGKEYS( XK_3, 2)
|
|
|
|
TAGKEYS( XK_4, 3)
|
|
|
|
TAGKEYS( XK_5, 4)
|
|
|
|
TAGKEYS( XK_6, 5)
|
|
|
|
TAGKEYS( XK_7, 6)
|
|
|
|
TAGKEYS( XK_8, 7)
|
|
|
|
TAGKEYS( XK_9, 8)
|
2019-09-04 22:16:39 +00:00
|
|
|
};
|
|
|
|
|
2020-05-31 13:14:29 +00:00
|
|
|
#if KEYMODES_PATCH
|
|
|
|
static Key cmdkeys[] = {
|
|
|
|
/* modifier keys function argument */
|
|
|
|
{ 0, XK_Escape, clearcmd, {0} },
|
|
|
|
{ ControlMask, XK_c, clearcmd, {0} },
|
|
|
|
{ 0, XK_i, setkeymode, {.ui = INSERTMODE} },
|
|
|
|
};
|
|
|
|
|
|
|
|
static Command commands[] = {
|
|
|
|
/* modifier (4 keys) keysyms (4 keys) function argument */
|
|
|
|
{ {ControlMask, ShiftMask, 0, 0}, {XK_w, XK_h, 0, 0}, setlayout, {.v = &layouts[0]} },
|
|
|
|
{ {ControlMask, 0, 0, 0}, {XK_w, XK_o, 0, 0}, setlayout, {.v = &layouts[2]} },
|
|
|
|
{ {ControlMask, ShiftMask, 0, 0}, {XK_w, XK_o, 0, 0}, onlyclient, {0} },
|
|
|
|
{ {ControlMask, 0, 0, 0}, {XK_w, XK_v, 0, 0}, setlayout, {.v = &layouts[0]} },
|
|
|
|
{ {ControlMask, 0, 0, 0}, {XK_w, XK_less, 0, 0}, setmfact, {.f = -0.05} },
|
|
|
|
{ {ControlMask, ShiftMask, 0, 0}, {XK_w, XK_less, 0, 0}, setmfact, {.f = +0.05} },
|
|
|
|
{ {ControlMask, ShiftMask, 0, 0}, {XK_w, XK_0, 0, 0}, setmfact, {.f = +1.50} },
|
|
|
|
{ {ShiftMask, 0, 0, 0}, {XK_period, XK_e, 0, 0}, spawn, {.v = dmenucmd} },
|
|
|
|
{ {ShiftMask, 0, 0, 0}, {XK_period, XK_o, 0, 0}, spawn, {.v = dmenucmd} },
|
|
|
|
{ {ShiftMask, 0, 0, 0}, {XK_period, XK_q, XK_Return, 0}, quit, {0} },
|
|
|
|
{ {ShiftMask, 0, 0, 0}, {XK_period, XK_b, XK_d, XK_Return}, killclient, {0} },
|
|
|
|
{ {ShiftMask, 0, 0, 0}, {XK_period, XK_b, XK_n, XK_Return}, focusstack, {.i = +1} },
|
|
|
|
{ {ShiftMask, 0, ShiftMask, 0}, {XK_period, XK_b, XK_n, XK_Return}, focusstack, {.i = -1} },
|
|
|
|
};
|
|
|
|
#endif // KEYMODES_PATCH
|
|
|
|
|
2019-09-04 22:16:39 +00:00
|
|
|
/* button definitions */
|
2020-06-24 14:36:51 +00:00
|
|
|
#if STATUSBUTTON_PATCH
|
|
|
|
/* click can be ClkButton, ClkTagBar, ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */
|
|
|
|
#else
|
2019-09-04 22:16:39 +00:00
|
|
|
/* click can be ClkTagBar, ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */
|
2020-06-24 14:36:51 +00:00
|
|
|
#endif //
|
2019-09-04 22:16:39 +00:00
|
|
|
static Button buttons[] = {
|
2020-03-25 14:15:47 +00:00
|
|
|
/* click event mask button function argument */
|
2020-06-24 14:36:51 +00:00
|
|
|
#if STATUSBUTTON_PATCH
|
|
|
|
{ ClkButton, 0, Button1, spawn, {.v = dmenucmd } },
|
|
|
|
#endif // STATUSBUTTON_PATCH
|
2020-03-25 14:15:47 +00:00
|
|
|
{ ClkLtSymbol, 0, Button1, setlayout, {0} },
|
|
|
|
{ ClkLtSymbol, 0, Button3, setlayout, {.v = &layouts[2]} },
|
2019-09-09 22:18:46 +00:00
|
|
|
#if AWESOMEBAR_PATCH
|
2020-03-25 14:15:47 +00:00
|
|
|
{ ClkWinTitle, 0, Button1, togglewin, {0} },
|
|
|
|
{ ClkWinTitle, 0, Button3, showhideclient, {0} },
|
2019-09-09 22:18:46 +00:00
|
|
|
#endif // AWESOMEBAR_PATCH
|
2020-03-25 14:15:47 +00:00
|
|
|
{ ClkWinTitle, 0, Button2, zoom, {0} },
|
2020-05-02 12:43:44 +00:00
|
|
|
#if STATUSCMD_PATCH && DWMBLOCKS_PATCH
|
|
|
|
{ ClkStatusText, 0, Button1, sigdwmblocks, {.i = 1 } },
|
|
|
|
{ ClkStatusText, 0, Button2, sigdwmblocks, {.i = 2 } },
|
|
|
|
{ ClkStatusText, 0, Button3, sigdwmblocks, {.i = 3 } },
|
|
|
|
#elif STATUSCMD_PATCH
|
2020-04-13 12:59:58 +00:00
|
|
|
{ ClkStatusText, 0, Button1, spawn, {.v = statuscmd } },
|
|
|
|
{ ClkStatusText, 0, Button2, spawn, {.v = statuscmd } },
|
|
|
|
{ ClkStatusText, 0, Button3, spawn, {.v = statuscmd } },
|
|
|
|
#else
|
2020-03-25 14:15:47 +00:00
|
|
|
{ ClkStatusText, 0, Button2, spawn, {.v = termcmd } },
|
2020-04-13 12:59:58 +00:00
|
|
|
#endif // STATUSCMD_PATCH
|
2020-03-25 14:15:47 +00:00
|
|
|
{ ClkClientWin, MODKEY, Button1, movemouse, {0} },
|
|
|
|
{ ClkClientWin, MODKEY, Button2, togglefloating, {0} },
|
|
|
|
{ ClkClientWin, MODKEY, Button3, resizemouse, {0} },
|
|
|
|
#if DRAGCFACT_PATCH && CFACTS_PATCH
|
|
|
|
{ ClkClientWin, MODKEY|ShiftMask, Button3, dragcfact, {0} },
|
|
|
|
#endif // DRAGCFACT_PATCH
|
2020-03-27 19:46:54 +00:00
|
|
|
#if DRAGMFACT_PATCH
|
|
|
|
{ ClkClientWin, MODKEY|ShiftMask, Button1, dragmfact, {0} },
|
|
|
|
#endif // DRAGMFACT_PATCH
|
2020-03-25 14:15:47 +00:00
|
|
|
{ ClkTagBar, 0, Button1, view, {0} },
|
|
|
|
{ ClkTagBar, 0, Button3, toggleview, {0} },
|
|
|
|
{ ClkTagBar, MODKEY, Button1, tag, {0} },
|
|
|
|
{ ClkTagBar, MODKEY, Button3, toggletag, {0} },
|
2019-09-04 22:16:39 +00:00
|
|
|
};
|