Configuration file for DWM on MacBook Air
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.

102 lines
5.6 KiB

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[] = "-*-terminus-medium-r-*-*-16-*-*-*-*-*-*-*";
  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 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 Bool resizehints = True; /* True means respect size hints in tiled resizals */
  24. static const Layout layouts[] = {
  25. /* symbol arrange function */
  26. { "[]=", tile }, /* first entry is default */
  27. { "><>", NULL }, /* no layout function means floating behavior */
  28. { "[M]", monocle },
  29. };
  30. /* key definitions */
  31. #define MODKEY Mod1Mask
  32. #define TAGKEYS(KEY,TAG) \
  33. { MODKEY, KEY, view, {.ui = 1 << TAG} }, \
  34. { MODKEY|ControlMask, KEY, toggleview, {.ui = 1 << TAG} }, \
  35. { MODKEY|ShiftMask, KEY, tag, {.ui = 1 << TAG} }, \
  36. { MODKEY|ControlMask|ShiftMask, KEY, toggletag, {.ui = 1 << TAG} },
  37. /* helper for spawning shell commands in the pre dwm-5.0 fashion */
  38. #define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } }
  39. /* commands */
  40. static const char *dmenucmd[] = { "dmenu_run", "-fn", font, "-nb", normbgcolor, "-nf", normfgcolor, "-sb", selbgcolor, "-sf", selfgcolor, NULL };
  41. static const char *termcmd[] = { "uxterm", NULL };
  42. static Key keys[] = {
  43. /* modifier key function argument */
  44. { MODKEY, XK_p, spawn, {.v = dmenucmd } },
  45. { MODKEY|ShiftMask, XK_Return, spawn, {.v = termcmd } },
  46. { MODKEY, XK_b, togglebar, {0} },
  47. { MODKEY, XK_j, focusstack, {.i = +1 } },
  48. { MODKEY, XK_k, focusstack, {.i = -1 } },
  49. { MODKEY, XK_h, setmfact, {.f = -0.05} },
  50. { MODKEY, XK_l, setmfact, {.f = +0.05} },
  51. { MODKEY, XK_Return, zoom, {0} },
  52. { MODKEY, XK_Tab, view, {0} },
  53. { MODKEY|ShiftMask, XK_c, killclient, {0} },
  54. { MODKEY, XK_t, setlayout, {.v = &layouts[0]} },
  55. { MODKEY, XK_f, setlayout, {.v = &layouts[1]} },
  56. { MODKEY, XK_m, setlayout, {.v = &layouts[2]} },
  57. { MODKEY, XK_space, setlayout, {0} },
  58. { MODKEY|ShiftMask, XK_space, togglefloating, {0} },
  59. { MODKEY, XK_0, view, {.ui = ~0 } },
  60. { MODKEY|ShiftMask, XK_0, tag, {.ui = ~0 } },
  61. { MODKEY, XK_comma, focusmon, {.i = -1 } },
  62. { MODKEY, XK_period, focusmon, {.i = +1 } },
  63. { MODKEY|ShiftMask, XK_comma, tagmon, {.i = -1 } },
  64. { MODKEY|ShiftMask, XK_period, tagmon, {.i = +1 } },
  65. TAGKEYS( XK_1, 0)
  66. TAGKEYS( XK_2, 1)
  67. TAGKEYS( XK_3, 2)
  68. TAGKEYS( XK_4, 3)
  69. TAGKEYS( XK_5, 4)
  70. TAGKEYS( XK_6, 5)
  71. TAGKEYS( XK_7, 6)
  72. TAGKEYS( XK_8, 7)
  73. TAGKEYS( XK_9, 8)
  74. { MODKEY|ShiftMask, XK_q, quit, {0} },
  75. };
  76. /* button definitions */
  77. /* click can be ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */
  78. static Button buttons[] = {
  79. /* click event mask button function argument */
  80. { ClkLtSymbol, 0, Button1, setlayout, {0} },
  81. { ClkLtSymbol, 0, Button3, setlayout, {.v = &layouts[2]} },
  82. { ClkWinTitle, 0, Button2, zoom, {0} },
  83. { ClkStatusText, 0, Button2, spawn, {.v = termcmd } },
  84. { ClkClientWin, MODKEY, Button1, movemouse, {0} },
  85. { ClkClientWin, MODKEY, Button2, togglefloating, {0} },
  86. { ClkClientWin, MODKEY, Button3, resizemouse, {0} },
  87. { ClkTagBar, 0, Button1, view, {0} },
  88. { ClkTagBar, 0, Button3, toggleview, {0} },
  89. { ClkTagBar, MODKEY, Button1, tag, {0} },
  90. { ClkTagBar, MODKEY, Button3, toggletag, {0} },
  91. };