config.def.h 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. /* See LICENSE file for copyright and license details. */
  2. /* appearance */
  3. static const char font[] = "-*-terminus-medium-r-*-*-16-*-*-*-*-*-*-*";
  4. static const char normbordercolor[] = "#444444";
  5. static const char normbgcolor[] = "#222222";
  6. static const char normfgcolor[] = "#bbbbbb";
  7. static const char selbordercolor[] = "#005577";
  8. static const char selbgcolor[] = "#005577";
  9. static const char selfgcolor[] = "#eeeeee";
  10. static const unsigned int borderpx = 1; /* border pixel of windows */
  11. static const unsigned int snap = 32; /* snap pixel */
  12. static const Bool showbar = True; /* False means no bar */
  13. static const Bool topbar = True; /* False means bottom bar */
  14. /* tagging */
  15. static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
  16. static const Rule rules[] = {
  17. /* class instance title tags mask isfloating monitor */
  18. { "Gimp", NULL, NULL, 0, True, -1 },
  19. { "Firefox", NULL, NULL, 1 << 8, False, -1 },
  20. };
  21. /* layout(s) */
  22. static const float mfact = 0.55; /* factor of master area size [0.05..0.95] */
  23. static const int nmaster = 1; /* number of clients in master area */
  24. static const Bool resizehints = True; /* True means respect size hints in tiled resizals */
  25. static const Layout layouts[] = {
  26. /* symbol arrange function */
  27. { "[]=", tile }, /* first entry is default */
  28. { "><>", NULL }, /* no layout function means floating behavior */
  29. { "[M]", monocle },
  30. };
  31. /* key definitions */
  32. #define MODKEY Mod1Mask
  33. #define TAGKEYS(KEY,TAG) \
  34. { MODKEY, KEY, view, {.ui = 1 << TAG} }, \
  35. { MODKEY|ControlMask, KEY, toggleview, {.ui = 1 << TAG} }, \
  36. { MODKEY|ShiftMask, KEY, tag, {.ui = 1 << TAG} }, \
  37. { MODKEY|ControlMask|ShiftMask, KEY, toggletag, {.ui = 1 << TAG} },
  38. /* helper for spawning shell commands in the pre dwm-5.0 fashion */
  39. #define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } }
  40. /* commands */
  41. static const char *dmenucmd[] = { "dmenu_run", "-fn", font, "-nb", normbgcolor, "-nf", normfgcolor, "-sb", selbgcolor, "-sf", selfgcolor, NULL };
  42. static const char *termcmd[] = { "uxterm", NULL };
  43. static Key keys[] = {
  44. /* modifier key function argument */
  45. { MODKEY, XK_p, spawn, {.v = dmenucmd } },
  46. { MODKEY|ShiftMask, XK_Return, spawn, {.v = termcmd } },
  47. { MODKEY, XK_b, togglebar, {0} },
  48. { MODKEY, XK_j, focusstack, {.i = +1 } },
  49. { MODKEY, XK_k, focusstack, {.i = -1 } },
  50. { MODKEY, XK_i, incnmaster, {.i = +1 } },
  51. { MODKEY, XK_d, incnmaster, {.i = -1 } },
  52. { MODKEY, XK_h, setmfact, {.f = -0.05} },
  53. { MODKEY, XK_l, setmfact, {.f = +0.05} },
  54. { MODKEY, XK_Return, zoom, {0} },
  55. { MODKEY, XK_Tab, view, {0} },
  56. { MODKEY|ShiftMask, XK_c, killclient, {0} },
  57. { MODKEY, XK_t, setlayout, {.v = &layouts[0]} },
  58. { MODKEY, XK_f, setlayout, {.v = &layouts[1]} },
  59. { MODKEY, XK_m, setlayout, {.v = &layouts[2]} },
  60. { MODKEY, XK_space, setlayout, {0} },
  61. { MODKEY|ShiftMask, XK_space, togglefloating, {0} },
  62. { MODKEY, XK_0, view, {.ui = ~0 } },
  63. { MODKEY|ShiftMask, XK_0, tag, {.ui = ~0 } },
  64. { MODKEY, XK_comma, focusmon, {.i = -1 } },
  65. { MODKEY, XK_period, focusmon, {.i = +1 } },
  66. { MODKEY|ShiftMask, XK_comma, tagmon, {.i = -1 } },
  67. { MODKEY|ShiftMask, XK_period, tagmon, {.i = +1 } },
  68. TAGKEYS( XK_1, 0)
  69. TAGKEYS( XK_2, 1)
  70. TAGKEYS( XK_3, 2)
  71. TAGKEYS( XK_4, 3)
  72. TAGKEYS( XK_5, 4)
  73. TAGKEYS( XK_6, 5)
  74. TAGKEYS( XK_7, 6)
  75. TAGKEYS( XK_8, 7)
  76. TAGKEYS( XK_9, 8)
  77. { MODKEY|ShiftMask, XK_q, quit, {0} },
  78. };
  79. /* button definitions */
  80. /* click can be ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */
  81. static Button buttons[] = {
  82. /* click event mask button function argument */
  83. { ClkLtSymbol, 0, Button1, setlayout, {0} },
  84. { ClkLtSymbol, 0, Button3, setlayout, {.v = &layouts[2]} },
  85. { ClkWinTitle, 0, Button2, zoom, {0} },
  86. { ClkStatusText, 0, Button2, spawn, {.v = termcmd } },
  87. { ClkClientWin, MODKEY, Button1, movemouse, {0} },
  88. { ClkClientWin, MODKEY, Button2, togglefloating, {0} },
  89. { ClkClientWin, MODKEY, Button3, resizemouse, {0} },
  90. { ClkTagBar, 0, Button1, view, {0} },
  91. { ClkTagBar, 0, Button3, toggleview, {0} },
  92. { ClkTagBar, MODKEY, Button1, tag, {0} },
  93. { ClkTagBar, MODKEY, Button3, toggletag, {0} },
  94. };