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.

100 lines
5.3 KiB

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[] = "-*-terminus-medium-r-normal-*-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. static Bool readin = True; /* False means do not read stdin */
  15. /* tagging */
  16. static const char tags[][MAXTAGLEN] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
  17. static Rule rules[] = {
  18. /* class instance title tags mask isfloating */
  19. { "Gimp", NULL, NULL, 0, True },
  20. { "Firefox", NULL, NULL, 1 << 8, True },
  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. TAGKEYS( XK_1, 0)
  63. TAGKEYS( XK_2, 1)
  64. TAGKEYS( XK_3, 2)
  65. TAGKEYS( XK_4, 3)
  66. TAGKEYS( XK_5, 4)
  67. TAGKEYS( XK_6, 5)
  68. TAGKEYS( XK_7, 6)
  69. TAGKEYS( XK_8, 7)
  70. TAGKEYS( XK_9, 8)
  71. { MODKEY|ShiftMask, XK_q, quit, {0} },
  72. };
  73. /* button definitions */
  74. /* click can be a tag number (starting at 0),
  75. * ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */
  76. static Button buttons[] = {
  77. /* click event mask button function argument */
  78. { ClkLtSymbol, 0, Button1, setlayout, {0} },
  79. { ClkLtSymbol, 0, Button3, setlayout, {.v = &layouts[2]} },
  80. { ClkWinTitle, 0, Button2, zoom, {0} },
  81. { ClkStatusText, 0, Button2, spawn, {.v = termcmd } },
  82. { ClkClientWin, MODKEY, Button1, movemouse, {0} },
  83. { ClkClientWin, MODKEY, Button2, togglefloating, {0} },
  84. { ClkClientWin, MODKEY, Button3, resizemouse, {0} },
  85. { ClkTagBar, 0, Button1, view, {0} },
  86. { ClkTagBar, 0, Button3, toggleview, {0} },
  87. { ClkTagBar, MODKEY, Button1, tag, {0} },
  88. { ClkTagBar, MODKEY, Button3, toggletag, {0} },
  89. };