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.

138 lines
7.5 KiB

6 months ago
  1. /* See LICENSE file for copyright and license details. */
  2. /* Needed for XF86keysym bindings */
  3. #include <X11/XF86keysym.h>
  4. /* appearance */
  5. static const unsigned int borderpx = 1; /* border pixel of windows */
  6. static const unsigned int snap = 32; /* snap pixel */
  7. static const int showbar = 1; /* 0 means no bar */
  8. static const int topbar = 1; /* 0 means bottom bar */
  9. static const char *fonts[] = { "Liberation Mono:size=12", "JoyPixels:pixelsize=10:antialias=true:autohint=true" };
  10. static const char dmenufont[] = "Liberation Mono:size=12";
  11. static const char col_gray1[] = "#222222";
  12. static const char col_gray2[] = "#444444";
  13. static const char col_gray3[] = "#bbbbbb";
  14. static const char col_gray4[] = "#eeeeee";
  15. static const char col_cyan[] = "#005577";
  16. static const char *colors[][3] = {
  17. /* fg bg border */
  18. [SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
  19. [SchemeSel] = { col_gray4, col_cyan, col_cyan },
  20. };
  21. /* tagging */
  22. static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
  23. static const Rule rules[] = {
  24. /* xprop(1):
  25. * WM_CLASS(STRING) = instance, class
  26. * WM_NAME(STRING) = title
  27. */
  28. /* class instance title tags mask isfloating monitor */
  29. { "Gimp", NULL, NULL, 0, 1, -1 },
  30. { "Firefox", NULL, NULL, 1 << 8, 0, -1 },
  31. };
  32. /* layout(s) */
  33. static const float mfact = 0.55; /* factor of master area size [0.05..0.95] */
  34. static const int nmaster = 1; /* number of clients in master area */
  35. static const int resizehints = 1; /* 1 means respect size hints in tiled resizals */
  36. static const int lockfullscreen = 1; /* 1 will force focus on the fullscreen window */
  37. static const Layout layouts[] = {
  38. /* symbol arrange function */
  39. { "[]=", tile }, /* first entry is default */
  40. { "><>", NULL }, /* no layout function means floating behavior */
  41. { "[M]", monocle },
  42. };
  43. /* key definitions */
  44. #define MODKEY Mod4Mask
  45. #define TAGKEYS(KEY,TAG) \
  46. { MODKEY, KEY, view, {.ui = 1 << TAG} }, \
  47. { MODKEY|ControlMask, KEY, toggleview, {.ui = 1 << TAG} }, \
  48. { MODKEY|ShiftMask, KEY, tag, {.ui = 1 << TAG} }, \
  49. { MODKEY|ControlMask|ShiftMask, KEY, toggletag, {.ui = 1 << TAG} },
  50. /* helper for spawning shell commands in the pre dwm-5.0 fashion */
  51. #define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } }
  52. /* commands */
  53. static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */
  54. static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL };
  55. static const char *termcmd[] = { "alacritty", NULL };
  56. /* Custom commands */
  57. static const char *volupcmd[] = { "sh", "-c", "/home/tovi/.local/bin/volup", NULL };
  58. static const char *voldowncmd[] = { "sh", "-c", "/home/tovi/.local/bin/voldown", NULL };
  59. static const char *spotifytoggle[] = { "sh", "-c", "/home/tovi/.local/bin/spotify-toggle", NULL };
  60. static const char *spotifynext[] = { "sh", "-c", "/home/tovi/.local/bin/spotify-next", NULL };
  61. static const char *spotifyprev[] = { "sh", "-c", "/home/tovi/.local/bin/spotify-prev", NULL };
  62. static const char *screencapture[] = { "sh", "-c", "/home/tovi/.local/bin/screencapture", NULL };
  63. static const Key keys[] = {
  64. /* modifier key function argument */
  65. { MODKEY, XK_p, spawn, {.v = dmenucmd } },
  66. { MODKEY|ShiftMask, XK_Return, spawn, {.v = termcmd } },
  67. { MODKEY, XK_b, togglebar, {0} },
  68. { MODKEY, XK_j, focusstack, {.i = +1 } },
  69. { MODKEY, XK_k, focusstack, {.i = -1 } },
  70. { MODKEY, XK_i, incnmaster, {.i = +1 } },
  71. { MODKEY, XK_d, incnmaster, {.i = -1 } },
  72. { MODKEY, XK_h, setmfact, {.f = -0.05} },
  73. { MODKEY, XK_l, setmfact, {.f = +0.05} },
  74. { MODKEY, XK_Return, zoom, {0} },
  75. { MODKEY, XK_Tab, view, {0} },
  76. { MODKEY|ShiftMask, XK_c, killclient, {0} },
  77. { MODKEY, XK_t, setlayout, {.v = &layouts[0]} },
  78. { MODKEY, XK_f, setlayout, {.v = &layouts[1]} },
  79. { MODKEY, XK_m, setlayout, {.v = &layouts[2]} },
  80. { MODKEY, XK_space, setlayout, {0} },
  81. { MODKEY|ShiftMask, XK_space, togglefloating, {0} },
  82. { MODKEY, XK_0, view, {.ui = ~0 } },
  83. { MODKEY|ShiftMask, XK_0, tag, {.ui = ~0 } },
  84. { MODKEY, XK_comma, focusmon, {.i = -1 } },
  85. { MODKEY, XK_period, focusmon, {.i = +1 } },
  86. { MODKEY|ShiftMask, XK_comma, tagmon, {.i = -1 } },
  87. { MODKEY|ShiftMask, XK_period, tagmon, {.i = +1 } },
  88. TAGKEYS( XK_1, 0)
  89. TAGKEYS( XK_2, 1)
  90. TAGKEYS( XK_3, 2)
  91. TAGKEYS( XK_4, 3)
  92. TAGKEYS( XK_5, 4)
  93. TAGKEYS( XK_6, 5)
  94. TAGKEYS( XK_7, 6)
  95. TAGKEYS( XK_8, 7)
  96. TAGKEYS( XK_9, 8)
  97. { MODKEY|ShiftMask, XK_q, quit, {0} },
  98. /* Custom Keybindings */
  99. { MODKEY, XK_q, killclient, {0} },
  100. { 0, XF86XK_AudioRaiseVolume, spawn, {.v = volupcmd } },
  101. { 0, XF86XK_AudioLowerVolume, spawn, {.v = voldowncmd } },
  102. { MODKEY, XK_s, spawn, {.v = screencapture } },
  103. { MODKEY|ShiftMask, XK_s, spawn, {.v = spotifytoggle } },
  104. { MODKEY|ShiftMask, XK_n, spawn, {.v = spotifynext } },
  105. { MODKEY|ShiftMask, XK_b, spawn, {.v = spotifyprev } },
  106. };
  107. /* button definitions */
  108. /* click can be ClkTagBar, ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */
  109. static const Button buttons[] = {
  110. /* click event mask button function argument */
  111. { ClkLtSymbol, 0, Button1, setlayout, {0} },
  112. { ClkLtSymbol, 0, Button3, setlayout, {.v = &layouts[2]} },
  113. { ClkWinTitle, 0, Button2, zoom, {0} },
  114. { ClkStatusText, 0, Button2, spawn, {.v = termcmd } },
  115. { ClkClientWin, MODKEY, Button1, movemouse, {0} },
  116. { ClkClientWin, MODKEY, Button2, togglefloating, {0} },
  117. { ClkClientWin, MODKEY, Button3, resizemouse, {0} },
  118. { ClkTagBar, 0, Button1, view, {0} },
  119. { ClkTagBar, 0, Button3, toggleview, {0} },
  120. { ClkTagBar, MODKEY, Button1, tag, {0} },
  121. { ClkTagBar, MODKEY, Button3, toggletag, {0} },
  122. };