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. unsigned int borderpx = 1; /* border pixel of windows */
  11. unsigned int snap = 32; /* snap pixel */
  12. Bool showbar = True; /* False means no bar */
  13. Bool topbar = True; /* False means bottom bar */
  14. /* tagging */
  15. const char tags[][MAXTAGLEN] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
  16. 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. double mfact = 0.55;
  23. Bool resizehints = True; /* False means respect size hints in tiled resizals */
  24. 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. Key keys[] = {
  37. /* modifier key function argument */
  38. { MODKEY, XK_p, spawn, (char *)"exec dmenu_run -fn '"FONT"' -nb '"NORMBGCOLOR"' -nf '"NORMFGCOLOR"' -sb '"SELBGCOLOR"' -sf '"SELFGCOLOR"'" },
  39. { MODKEY|ShiftMask, XK_Return, spawn, (char *)"exec uxterm" },
  40. { MODKEY, XK_b, togglebar, NULL },
  41. { MODKEY, XK_j, focusnext, NULL },
  42. { MODKEY, XK_k, focusprev, NULL },
  43. { MODKEY, XK_h, setmfact, (double[]){-0.05} },
  44. { MODKEY, XK_l, setmfact, (double[]){+0.05} },
  45. { MODKEY, XK_m, togglemax, NULL },
  46. { MODKEY, XK_Return, zoom, NULL },
  47. { MODKEY, XK_Tab, view, NULL },
  48. { MODKEY|ShiftMask, XK_c, killclient, NULL },
  49. { MODKEY, XK_space, togglelayout, NULL },
  50. { MODKEY|ShiftMask, XK_space, togglefloating, NULL },
  51. { MODKEY, XK_0, view, (uint[]){ ~0 } },
  52. { MODKEY|ShiftMask, XK_0, tag, (uint[]){ ~0 } },
  53. TAGKEYS( XK_1, (uint[]){ 1 << 0} )
  54. TAGKEYS( XK_2, (uint[]){ 1 << 1} )
  55. TAGKEYS( XK_3, (uint[]){ 1 << 2} )
  56. TAGKEYS( XK_4, (uint[]){ 1 << 3} )
  57. TAGKEYS( XK_5, (uint[]){ 1 << 4} )
  58. TAGKEYS( XK_6, (uint[]){ 1 << 5} )
  59. TAGKEYS( XK_7, (uint[]){ 1 << 6} )
  60. TAGKEYS( XK_8, (uint[]){ 1 << 7} )
  61. TAGKEYS( XK_9, (uint[]){ 1 << 8} )
  62. { MODKEY|ShiftMask, XK_q, quit, NULL },
  63. };