config.def.h.orig 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. /* See LICENSE file for copyright and license details. */
  2. /* appearance */
  3. static const char font[] = "-*-terminus-medium-r-*-*-16-*-*-*-*-*-*-*";
  4. //static const char font[] = "-*-terminus-medium-r-normal-*-14-*-*-*-*-*-*-*";
  5. static const char normbordercolor[] = "#cccccc";
  6. static const char normbgcolor[] = "#cccccc";
  7. static const char normfgcolor[] = "#000000";
  8. static const char selbordercolor[] = "#0066ff";
  9. static const char selbgcolor[] = "#0066ff";
  10. static const char selfgcolor[] = "#ffffff";
  11. static const unsigned int borderpx = 1; /* border pixel of windows */
  12. static const unsigned int snap = 32; /* snap pixel */
  13. static const Bool showbar = True; /* False means no bar */
  14. static const Bool topbar = True; /* False means bottom bar */
  15. /* tagging */
  16. static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
  17. static const Rule rules[] = {
  18. /* class instance title tags mask isfloating monitor */
  19. { "Gimp", NULL, NULL, 0, True, -1 },
  20. { "Firefox", NULL, NULL, 1 << 8, False, -1 },
  21. };
  22. /* layout(s) */
  23. static const float mfact = 0.55; /* factor of master area size [0.05..0.95] */
  24. static const Bool resizehints = True; /* True means respect size hints in tiled resizals */
  25. #include "bstack.c"
  26. #include "bstackhoriz.c"
  27. static const Layout layouts[] = {
  28. /* symbol arrange function */
  29. { "[]=", tile }, /* first entry is default */
  30. { "><>", NULL }, /* no layout function means floating behavior */
  31. { "[M]", monocle },
  32. { "TTT", bstack },
  33. { "===", bstackhoriz },
  34. };
  35. /* key definitions */
  36. #define MODKEY Mod1Mask
  37. #define TAGKEYS(KEY,TAG) \
  38. { MODKEY, KEY, view, {.ui = 1 << TAG} }, \
  39. { MODKEY|ControlMask, KEY, toggleview, {.ui = 1 << TAG} }, \
  40. { MODKEY|ShiftMask, KEY, tag, {.ui = 1 << TAG} }, \
  41. { MODKEY|ControlMask|ShiftMask, KEY, toggletag, {.ui = 1 << TAG} },
  42. /* helper for spawning shell commands in the pre dwm-5.0 fashion */
  43. #define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } }
  44. /* commands */
  45. static const char *dmenucmd[] = { "dmenu_run", "-fn", font, "-nb", normbgcolor, "-nf", normfgcolor, "-sb", selbgcolor, "-sf", selfgcolor, NULL };
  46. static const char *termcmd[] = { "uxterm", NULL };
  47. static const char *jiraissueselcmd[] = { "jira-issue-sel.sh", NULL };
  48. static Key keys[] = {
  49. /* modifier key function argument */
  50. { MODKEY, XK_p, spawn, {.v = dmenucmd } },
  51. { MODKEY|ShiftMask, XK_Return, spawn, {.v = termcmd } },
  52. { MODKEY, XK_b, togglebar, {0} },
  53. { MODKEY, XK_j, focusstack, {.i = +1 } },
  54. { MODKEY, XK_k, focusstack, {.i = -1 } },
  55. { MODKEY, XK_h, setmfact, {.f = -0.05} },
  56. { MODKEY, XK_l, setmfact, {.f = +0.05} },
  57. { MODKEY, XK_Return, zoom, {0} },
  58. { MODKEY, XK_Tab, view, {0} },
  59. { MODKEY|ShiftMask, XK_c, killclient, {0} },
  60. { MODKEY, XK_t, setlayout, {.v = &layouts[0]} },
  61. { MODKEY, XK_f, setlayout, {.v = &layouts[1]} },
  62. { MODKEY, XK_m, setlayout, {.v = &layouts[2]} },
  63. { MODKEY, XK_space, setlayout, {0} },
  64. { MODKEY|ShiftMask, XK_space, togglefloating, {0} },
  65. { MODKEY, XK_0, view, {.ui = ~0 } },
  66. { MODKEY|ShiftMask, XK_0, tag, {.ui = ~0 } },
  67. { MODKEY, XK_grave, spawn, {.v = jiraissueselcmd} },
  68. { MODKEY, XK_comma, focusmon, {.i = -1 } },
  69. { MODKEY, XK_period, focusmon, {.i = +1 } },
  70. { MODKEY|ShiftMask, XK_comma, tagmon, {.i = -1 } },
  71. { MODKEY|ShiftMask, XK_period, tagmon, {.i = +1 } },
  72. TAGKEYS( XK_1, 0)
  73. TAGKEYS( XK_2, 1)
  74. TAGKEYS( XK_3, 2)
  75. TAGKEYS( XK_4, 3)
  76. TAGKEYS( XK_5, 4)
  77. TAGKEYS( XK_6, 5)
  78. TAGKEYS( XK_7, 6)
  79. TAGKEYS( XK_8, 7)
  80. TAGKEYS( XK_9, 8)
  81. { MODKEY|ShiftMask, XK_q, quit, {0} },
  82. };
  83. /* button definitions */
  84. /* click can be ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */
  85. static Button buttons[] = {
  86. /* click event mask button function argument */
  87. { ClkLtSymbol, 0, Button1, setlayout, {0} },
  88. { ClkLtSymbol, 0, Button3, setlayout, {.v = &layouts[2]} },
  89. { ClkWinTitle, 0, Button2, zoom, {0} },
  90. { ClkStatusText, 0, Button2, spawn, {.v = termcmd } },
  91. { ClkClientWin, MODKEY, Button1, movemouse, {0} },
  92. { ClkClientWin, MODKEY, Button2, togglefloating, {0} },
  93. { ClkClientWin, MODKEY, Button3, resizemouse, {0} },
  94. { ClkTagBar, 0, Button1, view, {0} },
  95. { ClkTagBar, 0, Button3, toggleview, {0} },
  96. { ClkTagBar, MODKEY, Button1, tag, {0} },
  97. { ClkTagBar, MODKEY, Button3, toggletag, {0} },
  98. };