You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

108 lines
5.6 KiB

15 years ago
15 years ago
16 years ago
16 years ago
16 years ago
16 years ago
16 years ago
  1. /* See LICENSE file for copyright and license details. */
  2. /* appearance */
  3. static const char font[] = "-*-*-medium-*-*-*-14-*-*-*-*-*-*-*";
  4. static const char normbordercolor[] = "#cccccc";
  5. static const char normbgcolor[] = "#cccccc";
  6. static const char normfgcolor[] = "#000000";
  7. static const char selbordercolor[] = "#0066ff";
  8. static const char selbgcolor[] = "#0066ff";
  9. static const char selfgcolor[] = "#ffffff";
  10. static unsigned int borderpx = 1; /* border pixel of windows */
  11. static unsigned int snap = 32; /* snap pixel */
  12. static Bool showbar = True; /* False means no bar */
  13. static 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 unsigned int tagset[] = {1, 1}; /* after start, first tag is selected */
  17. static Rule rules[] = {
  18. /* class instance title tags mask isfloating */
  19. { "Gimp", NULL, NULL, 0, True },
  20. { "Firefox", NULL, NULL, 1 << 8, False },
  21. };
  22. /* layout(s) */
  23. static float mfact = 0.55; /* factor of master area size [0.05..0.95] */
  24. static Bool resizehints = True; /* False means respect size hints in tiled resizals */
  25. static 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_h, setmfact, {.f = -0.05} },
  51. { MODKEY, XK_l, setmfact, {.f = +0.05} },
  52. { MODKEY, XK_Return, zoom, {0} },
  53. { MODKEY, XK_Tab, view, {0} },
  54. { MODKEY|ShiftMask, XK_c, killclient, {0} },
  55. { MODKEY, XK_t, setlayout, {.v = &layouts[0]} },
  56. { MODKEY, XK_f, setlayout, {.v = &layouts[1]} },
  57. { MODKEY, XK_m, setlayout, {.v = &layouts[2]} },
  58. { MODKEY, XK_space, setlayout, {0} },
  59. { MODKEY|ShiftMask, XK_space, togglefloating, {0} },
  60. { MODKEY, XK_0, view, {.ui = ~0 } },
  61. { MODKEY|ShiftMask, XK_0, tag, {.ui = ~0 } },
  62. #ifdef XINERAMA
  63. { MODKEY, XK_w, focusmon, {.ui = 0 } },
  64. { MODKEY, XK_e, focusmon, {.ui = 1 } },
  65. { MODKEY|ShiftMask, XK_w, tagmon, {.ui = 0 } },
  66. { MODKEY|ShiftMask, XK_e, tagmon, {.ui = 1 } },
  67. #endif /* XINERAMA */
  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 a tag number (starting at 0),
  81. * ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */
  82. static Button buttons[] = {
  83. /* click event mask button function argument */
  84. { ClkLtSymbol, 0, Button1, setlayout, {0} },
  85. { ClkLtSymbol, 0, Button3, setlayout, {.v = &layouts[2]} },
  86. { ClkWinTitle, 0, Button2, zoom, {0} },
  87. { ClkStatusText, 0, Button2, spawn, {.v = termcmd } },
  88. { ClkClientWin, MODKEY, Button1, movemouse, {0} },
  89. { ClkClientWin, MODKEY, Button2, togglefloating, {0} },
  90. { ClkClientWin, MODKEY, Button3, resizemouse, {0} },
  91. { ClkTagBar, 0, Button1, view, {0} },
  92. { ClkTagBar, 0, Button3, toggleview, {0} },
  93. { ClkTagBar, MODKEY, Button1, tag, {0} },
  94. { ClkTagBar, MODKEY, Button3, toggletag, {0} },
  95. };