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.

70 lines
3.6 KiB

  1. /* See LICENSE file for copyright and license details. */
  2. /* appearance */
  3. #define FONT "-*-terminus-medium-r-normal-*-14-*-*-*-*-*-*-*"
  4. #define NORMBORDERCOLOR "#cccccc"
  5. #define NORMBGCOLOR "#cccccc"
  6. #define NORMFGCOLOR "#000000"
  7. #define SELBORDERCOLOR "#0066ff"
  8. #define SELBGCOLOR "#0066ff"
  9. #define SELFGCOLOR "#ffffff"
  10. static uint borderpx = 1; /* border pixel of windows */
  11. static uint 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[][MAXTAGLEN] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
  16. static Rule rules[] = {
  17. /* class instance title tags ref isfloating */
  18. { "Gimp", NULL, NULL, 0, True },
  19. { "Firefox", NULL, NULL, 1 << 8, True },
  20. };
  21. /* layout(s) */
  22. static float mfact = 0.55;
  23. static Bool resizehints = False; /* False means respect size hints in tiled resizals */
  24. static Layout layouts[] = {
  25. /* symbol arrange function */
  26. { "[]=", tile }, /* first entry is default */
  27. { "><>", NULL }, /* no layout function means floating behavior */
  28. };
  29. /* key definitions */
  30. #define MODKEY Mod1Mask
  31. #define TAGKEYS(KEY,TAG) \
  32. { MODKEY, KEY, view, TAG }, \
  33. { MODKEY|ControlMask, KEY, toggleview, TAG }, \
  34. { MODKEY|ShiftMask, KEY, tag, TAG }, \
  35. { MODKEY|ControlMask|ShiftMask, KEY, toggletag, TAG },
  36. static Key keys[] = {
  37. /* modifier key function argument */
  38. { MODKEY, XK_p, spawn, {.c = "exec dmenu_run -fn '"FONT"' -nb '"NORMBGCOLOR"' -nf '"NORMFGCOLOR"' -sb '"SELBGCOLOR"' -sf '"SELFGCOLOR"'" }},
  39. { MODKEY|ShiftMask, XK_Return, spawn, {.c = "exec uxterm" }},
  40. { MODKEY, XK_b, togglebar, {0}},
  41. { MODKEY, XK_j, focusstack, {.i = +1 }},
  42. { MODKEY, XK_k, focusstack, {.i = -1 }},
  43. { MODKEY, XK_h, setmfact, {.f = -0.05}},
  44. { MODKEY, XK_l, setmfact, {.f = +0.05}},
  45. { MODKEY, XK_m, togglemax, {0}},
  46. { MODKEY, XK_Return, zoom, {0}},
  47. { MODKEY, XK_Tab, view, {0}},
  48. { MODKEY|ShiftMask, XK_c, killclient, {0}},
  49. { MODKEY, XK_space, togglelayout, {0}},
  50. { MODKEY|ShiftMask, XK_space, togglefloating, {0}},
  51. { MODKEY, XK_0, view, {.ui = ~0 } },
  52. { MODKEY|ShiftMask, XK_0, tag, {.ui = ~0 } },
  53. TAGKEYS( XK_1, {.ui = 1 << 0} )
  54. TAGKEYS( XK_2, {.ui = 1 << 1} )
  55. TAGKEYS( XK_3, {.ui = 1 << 2} )
  56. TAGKEYS( XK_4, {.ui = 1 << 3} )
  57. TAGKEYS( XK_5, {.ui = 1 << 4} )
  58. TAGKEYS( XK_6, {.ui = 1 << 5} )
  59. TAGKEYS( XK_7, {.ui = 1 << 6} )
  60. TAGKEYS( XK_8, {.ui = 1 << 7} )
  61. TAGKEYS( XK_9, {.ui = 1 << 8} )
  62. { MODKEY|ShiftMask, XK_q, quit, {0}},
  63. };