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.

147 lines
8.0 KiB

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