config.def.h (8482B)
1 /* See LICENSE file for copyright and license details. */ 2 3 /* appearance */ 4 static const unsigned int borderpx = 1; /* border pixel of windows */ 5 static const unsigned int snap = 32; /* snap pixel */ 6 static const unsigned int gappih = 20; /* horiz inner gap between windows */ 7 static const unsigned int gappiv = 10; /* vert inner gap between windows */ 8 static const unsigned int gappoh = 10; /* horiz outer gap between windows and screen edge */ 9 static const unsigned int gappov = 30; /* vert outer gap between windows and screen edge */ 10 static int smartgaps = 0; /* 1 means no outer gap when there is only one window */ 11 static const int showbar = 1; /* 0 means no bar */ 12 static const int topbar = 1; /* 0 means bottom bar */ 13 static const char *fonts[] = { "monospace:size=10" }; 14 static const char dmenufont[] = "monospace:size=10"; 15 static const char col_gray1[] = "#222222"; 16 static const char col_gray2[] = "#444444"; 17 static const char col_gray3[] = "#bbbbbb"; 18 static const char col_gray4[] = "#eeeeee"; 19 static const char col_cyan[] = "#005577"; 20 static const char *colors[][3] = { 21 /* fg bg border */ 22 [SchemeNorm] = { col_gray3, col_gray1, col_gray2 }, 23 [SchemeSel] = { col_gray4, col_cyan, col_cyan }, 24 }; 25 26 /* tagging */ 27 static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" }; 28 29 static const Rule rules[] = { 30 /* xprop(1): 31 * WM_CLASS(STRING) = instance, class 32 * WM_NAME(STRING) = title 33 */ 34 /* class instance title tags mask isfloating monitor */ 35 { "Gimp", NULL, NULL, 0, 1, -1 }, 36 { "Firefox", NULL, NULL, 1 << 8, 0, -1 }, 37 }; 38 39 /* layout(s) */ 40 static const float mfact = 0.55; /* factor of master area size [0.05..0.95] */ 41 static const int nmaster = 1; /* number of clients in master area */ 42 static const int resizehints = 1; /* 1 means respect size hints in tiled resizals */ 43 static const int lockfullscreen = 1; /* 1 will force focus on the fullscreen window */ 44 45 #define FORCE_VSPLIT 1 /* nrowgrid layout: force two clients to always split vertically */ 46 #include "vanitygaps.c" 47 48 static const Layout layouts[] = { 49 /* symbol arrange function */ 50 { "[]=", tile }, /* first entry is default */ 51 { "[M]", monocle }, 52 { "[@]", spiral }, 53 { "[\\]", dwindle }, 54 { "H[]", deck }, 55 { "TTT", bstack }, 56 { "===", bstackhoriz }, 57 { "HHH", grid }, 58 { "###", nrowgrid }, 59 { "---", horizgrid }, 60 { ":::", gaplessgrid }, 61 { "|M|", centeredmaster }, 62 { ">M>", centeredfloatingmaster }, 63 { "><>", NULL }, /* no layout function means floating behavior */ 64 { NULL, NULL }, 65 }; 66 67 /* key definitions */ 68 #define MODKEY Mod1Mask 69 #define TAGKEYS(KEY,TAG) \ 70 { MODKEY, KEY, view, {.ui = 1 << TAG} }, \ 71 { MODKEY|ControlMask, KEY, toggleview, {.ui = 1 << TAG} }, \ 72 { MODKEY|ShiftMask, KEY, tag, {.ui = 1 << TAG} }, \ 73 { MODKEY|ControlMask|ShiftMask, KEY, toggletag, {.ui = 1 << TAG} }, 74 75 /* helper for spawning shell commands in the pre dwm-5.0 fashion */ 76 #define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } } 77 78 /* commands */ 79 static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */ 80 static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL }; 81 static const char *termcmd[] = { "st", NULL }; 82 83 static const Key keys[] = { 84 /* modifier key function argument */ 85 { MODKEY, XK_p, spawn, {.v = dmenucmd } }, 86 { MODKEY|ShiftMask, XK_Return, spawn, {.v = termcmd } }, 87 { MODKEY, XK_b, togglebar, {0} }, 88 { MODKEY, XK_j, focusstack, {.i = +1 } }, 89 { MODKEY, XK_k, focusstack, {.i = -1 } }, 90 { MODKEY, XK_i, incnmaster, {.i = +1 } }, 91 { MODKEY, XK_d, incnmaster, {.i = -1 } }, 92 { MODKEY, XK_h, setmfact, {.f = -0.05} }, 93 { MODKEY, XK_l, setmfact, {.f = +0.05} }, 94 { MODKEY, XK_Return, zoom, {0} }, 95 { MODKEY|Mod4Mask, XK_u, incrgaps, {.i = +1 } }, 96 { MODKEY|Mod4Mask|ShiftMask, XK_u, incrgaps, {.i = -1 } }, 97 { MODKEY|Mod4Mask, XK_i, incrigaps, {.i = +1 } }, 98 { MODKEY|Mod4Mask|ShiftMask, XK_i, incrigaps, {.i = -1 } }, 99 { MODKEY|Mod4Mask, XK_o, incrogaps, {.i = +1 } }, 100 { MODKEY|Mod4Mask|ShiftMask, XK_o, incrogaps, {.i = -1 } }, 101 { MODKEY|Mod4Mask, XK_6, incrihgaps, {.i = +1 } }, 102 { MODKEY|Mod4Mask|ShiftMask, XK_6, incrihgaps, {.i = -1 } }, 103 { MODKEY|Mod4Mask, XK_7, incrivgaps, {.i = +1 } }, 104 { MODKEY|Mod4Mask|ShiftMask, XK_7, incrivgaps, {.i = -1 } }, 105 { MODKEY|Mod4Mask, XK_8, incrohgaps, {.i = +1 } }, 106 { MODKEY|Mod4Mask|ShiftMask, XK_8, incrohgaps, {.i = -1 } }, 107 { MODKEY|Mod4Mask, XK_9, incrovgaps, {.i = +1 } }, 108 { MODKEY|Mod4Mask|ShiftMask, XK_9, incrovgaps, {.i = -1 } }, 109 { MODKEY|Mod4Mask, XK_0, togglegaps, {0} }, 110 { MODKEY|Mod4Mask|ShiftMask, XK_0, defaultgaps, {0} }, 111 { MODKEY, XK_Tab, view, {0} }, 112 { MODKEY|ShiftMask, XK_c, killclient, {0} }, 113 { MODKEY, XK_t, setlayout, {.v = &layouts[0]} }, 114 { MODKEY, XK_f, setlayout, {.v = &layouts[1]} }, 115 { MODKEY, XK_m, setlayout, {.v = &layouts[2]} }, 116 { MODKEY, XK_space, setlayout, {0} }, 117 { MODKEY|ShiftMask, XK_space, togglefloating, {0} }, 118 { MODKEY, XK_0, view, {.ui = ~0 } }, 119 { MODKEY|ShiftMask, XK_0, tag, {.ui = ~0 } }, 120 { MODKEY, XK_comma, focusmon, {.i = -1 } }, 121 { MODKEY, XK_period, focusmon, {.i = +1 } }, 122 { MODKEY|ShiftMask, XK_comma, tagmon, {.i = -1 } }, 123 { MODKEY|ShiftMask, XK_period, tagmon, {.i = +1 } }, 124 TAGKEYS( XK_1, 0) 125 TAGKEYS( XK_2, 1) 126 TAGKEYS( XK_3, 2) 127 TAGKEYS( XK_4, 3) 128 TAGKEYS( XK_5, 4) 129 TAGKEYS( XK_6, 5) 130 TAGKEYS( XK_7, 6) 131 TAGKEYS( XK_8, 7) 132 TAGKEYS( XK_9, 8) 133 { MODKEY|ShiftMask, XK_q, quit, {0} }, 134 }; 135 136 /* button definitions */ 137 /* click can be ClkTagBar, ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */ 138 static const Button buttons[] = { 139 /* click event mask button function argument */ 140 { ClkLtSymbol, 0, Button1, setlayout, {0} }, 141 { ClkLtSymbol, 0, Button3, setlayout, {.v = &layouts[2]} }, 142 { ClkWinTitle, 0, Button2, zoom, {0} }, 143 { ClkStatusText, 0, Button2, spawn, {.v = termcmd } }, 144 { ClkClientWin, MODKEY, Button1, movemouse, {0} }, 145 { ClkClientWin, MODKEY, Button2, togglefloating, {0} }, 146 { ClkClientWin, MODKEY, Button3, resizemouse, {0} }, 147 { ClkTagBar, 0, Button1, view, {0} }, 148 { ClkTagBar, 0, Button3, toggleview, {0} }, 149 { ClkTagBar, MODKEY, Button1, tag, {0} }, 150 { ClkTagBar, MODKEY, Button3, toggletag, {0} }, 151 }; 152