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.

66 lines
2.5 KiB

  1. /*
  2. * (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
  3. * See LICENSE file for license details.
  4. */
  5. #define TAGS \
  6. const char *tags[] = { "1", "2", "3", "4", "5", NULL };
  7. #define DEFMODE dotile /* dofloat */
  8. #define FLOATSYMBOL "><>"
  9. #define TILESYMBOL "[]="
  10. #define FONT "fixed"
  11. #define SELBGCOLOR "#666699"
  12. #define SELFGCOLOR "#eeeeee"
  13. #define NORMBGCOLOR "#333366"
  14. #define NORMFGCOLOR "#cccccc"
  15. #define STATUSBGCOLOR "#dddddd"
  16. #define STATUSFGCOLOR "#222222"
  17. #define MODKEY Mod1Mask
  18. #define MASTERW 60 /* percent */
  19. #define KEYS \
  20. static Key key[] = { \
  21. /* modifier key function arguments */ \
  22. { MODKEY|ShiftMask, XK_Return, spawn, { .cmd = "exec xterm" } }, \
  23. { MODKEY, XK_Tab, focusnext, { 0 } }, \
  24. { MODKEY|ShiftMask, XK_Tab, focusprev, { 0 } }, \
  25. { MODKEY, XK_Return, zoom, { 0 } }, \
  26. { MODKEY, XK_g, resizecol, { .i = 20 } }, \
  27. { MODKEY, XK_s, resizecol, { .i = -20 } }, \
  28. { MODKEY|ShiftMask, XK_1, tag, { .i = 0 } }, \
  29. { MODKEY|ShiftMask, XK_2, tag, { .i = 1 } }, \
  30. { MODKEY|ShiftMask, XK_3, tag, { .i = 2 } }, \
  31. { MODKEY|ShiftMask, XK_4, tag, { .i = 3 } }, \
  32. { MODKEY|ShiftMask, XK_5, tag, { .i = 4 } }, \
  33. { MODKEY|ControlMask|ShiftMask, XK_1, toggletag, { .i = 0 } }, \
  34. { MODKEY|ControlMask|ShiftMask, XK_2, toggletag, { .i = 1 } }, \
  35. { MODKEY|ControlMask|ShiftMask, XK_3, toggletag, { .i = 2 } }, \
  36. { MODKEY|ControlMask|ShiftMask, XK_4, toggletag, { .i = 3 } }, \
  37. { MODKEY|ControlMask|ShiftMask, XK_5, toggletag, { .i = 4 } }, \
  38. { MODKEY|ShiftMask, XK_c, killclient, { 0 } }, \
  39. { MODKEY, XK_space, togglemode, { 0 } }, \
  40. { MODKEY, XK_0, viewall, { 0 } }, \
  41. { MODKEY, XK_1, view, { .i = 0 } }, \
  42. { MODKEY, XK_2, view, { .i = 1 } }, \
  43. { MODKEY, XK_3, view, { .i = 2 } }, \
  44. { MODKEY, XK_4, view, { .i = 3 } }, \
  45. { MODKEY, XK_5, view, { .i = 4 } }, \
  46. { MODKEY|ControlMask, XK_1, toggleview, { .i = 0 } }, \
  47. { MODKEY|ControlMask, XK_2, toggleview, { .i = 1 } }, \
  48. { MODKEY|ControlMask, XK_3, toggleview, { .i = 2 } }, \
  49. { MODKEY|ControlMask, XK_4, toggleview, { .i = 3 } }, \
  50. { MODKEY|ControlMask, XK_5, toggleview, { .i = 4 } }, \
  51. { MODKEY|ShiftMask, XK_q, quit, { 0 } }, \
  52. };
  53. /* Query class:instance:title for regex matching info with following command:
  54. * xprop | awk -F '"' '/^WM_CLASS/ { printf("%s:%s:",$4,$2) }; /^WM_NAME/ { printf("%s\n",$2) }' */
  55. #define RULES \
  56. static Rule rule[] = { \
  57. /* class:instance:title regex tags regex isfloat */ \
  58. { "Firefox.*", "2", False }, \
  59. { "Gimp.*", NULL, True}, \
  60. };