Advertisement
icon_bishop

dwm config.h

Jun 27th, 2023
17
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.99 KB | Source Code | 0 0
  1. /* See LICENSE file for copyright and license details. */
  2.  
  3. /* alt-tab configuration */
  4. static const unsigned int tabModKey = 0x40; /* if this key is hold the alt-tab functionality stays acitve. This key must be the same as key that is used to active functin altTabStart `*/
  5. static const unsigned int tabCycleKey = 0x17; /* if this key is hit the alt-tab program moves one position forward in clients stack. This key must be the same as key that is used to active functin altTabStart */
  6. static const unsigned int tabPosY = 1; /* tab position on Y axis, 0 = bottom, 1 = center, 2 = top */
  7. static const unsigned int tabPosX = 1; /* tab position on X axis, 0 = left, 1 = center, 2 = right */
  8. static const unsigned int maxWTab = 600; /* tab menu width */
  9. static const unsigned int maxHTab = 200; /* tab menu height */
  10.  
  11. /* appearance */
  12. static const unsigned int borderpx = 5; /* border pixel of windows */
  13. static const unsigned int gappx = 7; /* gaps between windows */
  14. static const unsigned int snap = 32; /* snap pixel */
  15. static const int showbar = 1; /* 0 means no bar */
  16. static const int topbar = 1; /* 0 means bottom bar */
  17. static const char *fonts[] = { "Hack:size=10", "Hack Nerd Font:pixelsize=16" };
  18. static const char dmenufont[] = "Hack Nerd Font:size=13";
  19. static const char col_gray1[] = "#222222";
  20. static const char col_gray2[] = "#444444";
  21. static const char col_gray3[] = "#bbbbbb";
  22. static const char col_gray4[] = "#eeeeee";
  23. static const char col_cyan[] = "#005577";
  24. static const char col_black[] = "#000000";
  25. static const char col_blackAlt[] = "#0e0e0e";
  26. static const char col_blue[] = "#08185a";
  27. static const char col_blueAlt[] = "#1316c5";
  28. static const char col_urgborder[] = "#ff0000";
  29. static const char *colors[][3] = {
  30. /* fg bg border */
  31. [SchemeNorm] = { col_gray3, col_black, col_blackAlt },
  32. [SchemeSel] = { col_gray4, col_blue, col_blueAlt },
  33. [SchemeUrg] = { col_gray4, col_cyan, col_urgborder },
  34. };
  35. /* PyWal colors */
  36. //#include "/home/icon_bishopxxiii/.cache/wal/colors-wal-dwm.h"
  37.  
  38. /* audio control */
  39. #define XF86XK_AudioLowerVolume 0x1008FF11 /* Volume control down */
  40. #define XF86XK_AudioMute 0x1008FF12 /* Mute sound from the system */
  41. #define XF86XK_AudioRaiseVolume 0x1008FF13 /* Volume control up */
  42. #include <X11/XF86keysym.h>
  43. static const char *upvol[] = { "/usr/bin/pactl", "set-sink-volume", "0", "+5%", NULL};
  44. static const char *downvol[] = { "/usr/bin/pactl", "set-sink-volume", "0", "-5%", NULL};
  45. static const char *mutevol[] = { "/usr/bin/pactl", "set-sink-volume", "0", "toggle", NULL};
  46.  
  47. /* tagging: refer to https://github.com/bakkeby/patches/wiki/tagicons */
  48. static const char *tags[NUMTAGS] = { NULL }; /* left for compatibility reasons, i.e. code that checks LENGTH(tags) */
  49. static char *tagicons[][NUMTAGS*2] = {
  50. [IconsDefault] = { "α", "β", "Γ", "Δ", "ε", "ζ", "η", "Θ", "ι", "κ", "λ", "μ", "ν", "Ξ", "Ο", "π", "ρ", "Σ" },
  51. [IconsVacant] = { NULL },
  52. [IconsOccupied] = { NULL },
  53. };
  54. static const Rule rules[] = {
  55. /* xprop(1):
  56. * WM_CLASS(STRING) = instance, class
  57. * WM_NAME(STRING) = title
  58. */
  59. /* class instance title tags mask isfloating monitor */
  60. { "Thunar", NULL, NULL, 0, 1, -1 },
  61. { "Gimp", NULL, NULL, 0, 1, -1 },
  62. { "Firefox", NULL, NULL, 1 << 8, 0, -1 },
  63. };
  64.  
  65. /* layout(s) */
  66. static const float mfact = 0.55; /* factor of master area size [0.05..0.95] */
  67. static const int nmaster = 1; /* number of clients in master area */
  68. static const int resizehints = 1; /* 1 means respect size hints in tiled resizals */
  69. static const int lockfullscreen = 1; /* 1 will force focus on the fullscreen window */
  70.  
  71. static const Layout layouts[] = {
  72. /* symbol arrange function */
  73. { "[]=", tile }, /* first entry is default */
  74. { "><>", NULL }, /* no layout function means floating behavior */
  75. { "[M]", monocle },
  76. };
  77.  
  78. /* key definitions */
  79. #define MODKEY Mod4Mask
  80. #define TAGKEYS(KEY,TAG) \
  81. { MODKEY, KEY, view, {.ui = 1 << TAG} }, \
  82. { MODKEY|ControlMask, KEY, toggleview, {.ui = 1 << TAG} }, \
  83. { MODKEY|ShiftMask, KEY, tag, {.ui = 1 << TAG} }, \
  84. { MODKEY|ControlMask|ShiftMask, KEY, toggletag, {.ui = 1 << TAG} },
  85.  
  86. /* helper for spawning shell commands in the pre dwm-5.0 fashion */
  87. #define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } }
  88.  
  89. /* commands */
  90. static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */
  91. static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_blackAlt, "-nf", col_gray3, "-sb", col_blueAlt, "-sf", col_gray4, NULL };
  92. static const char *termcmd[] = { "kitty", NULL };
  93.  
  94. static const Key keys[] = {
  95. /* modifier key function argument */
  96. { MODKEY, XK_space, spawn, {.v = dmenucmd } },
  97. { MODKEY, XK_Return, spawn, {.v = termcmd } },
  98. { ControlMask, XK_b, togglebar, {0} },
  99. { MODKEY, XK_j, focusstack, {.i = +1 } },
  100. { MODKEY, XK_k, focusstack, {.i = -1 } },
  101. { MODKEY, XK_d, incnmaster, {.i = +1 } },
  102. { MODKEY, XK_h, setmfact, {.f = -0.05} },
  103. { MODKEY, XK_l, setmfact, {.f = +0.05} },
  104. { MODKEY, XK_g, zoom, {0} },
  105. { MODKEY, XK_Tab, view, {0} },
  106. { MODKEY, XK_q, killclient, {0} },
  107. { MODKEY, XK_t, setlayout, {.v = &layouts[0]} },
  108. { MODKEY, XK_f, setlayout, {.v = &layouts[1]} },
  109. { MODKEY, XK_s, setlayout, {.v = &layouts[2]} },
  110. { MODKEY|ShiftMask, XK_s, setlayout, {0} },
  111. { MODKEY|ShiftMask, XK_f, togglefloating, {0} },
  112. { MODKEY, XK_0, view, {.ui = ~0 } },
  113. { MODKEY|ShiftMask, XK_0, tag, {.ui = ~0 } },
  114. { MODKEY, XK_comma, focusmon, {.i = -1 } },
  115. { MODKEY, XK_period, focusmon, {.i = +1 } },
  116. { MODKEY|ShiftMask, XK_comma, tagmon, {.i = -1 } },
  117. { MODKEY|ShiftMask, XK_period, tagmon, {.i = +1 } },
  118. { MODKEY|ShiftMask, XK_i, seticonset, {.i = 0 } },
  119. { MODKEY|ControlMask|ShiftMask, XK_i, seticonset, {.i = 1 } },
  120. { MODKEY, XK_minus, setgaps, {.i = -1 } },
  121. { MODKEY, XK_equal, setgaps, {.i = +1 } },
  122. { MODKEY|ShiftMask, XK_equal, setgaps, {.i = 0 } },
  123. { MODKEY|ShiftMask, XK_Tab, altTabStart, {0} },
  124. TAGKEYS( XK_1, 0)
  125. TAGKEYS( XK_2, 1)
  126. TAGKEYS( XK_3, 2)
  127. TAGKEYS( XK_4, 3)
  128. TAGKEYS( XK_5, 4)
  129. TAGKEYS( XK_6, 5)
  130. TAGKEYS( XK_7, 6)
  131. TAGKEYS( XK_8, 7)
  132. TAGKEYS( XK_9, 8)
  133. { MODKEY|ShiftMask, XK_q, quit, {0} },
  134. { MODKEY|ControlMask, XK_q, spawn, SHCMD("clearine") },
  135. /* for audio controls */
  136. { 0, XF86XK_AudioRaiseVolume, spawn, {.v = upvol } },
  137. { 0, XF86XK_AudioLowerVolume, spawn, {.v = downvol } },
  138. { 0, XF86XK_AudioMute, spawn, {.v = mutevol } },
  139. { MODKEY, XK_v, spawn, SHCMD("pavol-dunst -v +5") },
  140. { MODKEY|ShiftMask, XK_v, spawn, SHCMD("pavol-dunst -v -5") },
  141. { MODKEY|ControlMask|ShiftMask, XK_v, spawn, SHCMD("pavol-dunst -m toggle") },
  142. { MODKEY, XK_a, spawn, SHCMD("krita") },
  143. { MODKEY|ShiftMask, XK_a, spawn, SHCMD("inkscape") },
  144. { MODKEY|ControlMask|ShiftMask, XK_a, spawn, SHCMD("kdenlive") },
  145. { MODKEY|ShiftMask, XK_b, spawn, SHCMD("vivaldi-stable") },
  146. { MODKEY|ShiftMask, XK_m, spawn, SHCMD("stremio") },
  147. { MODKEY, XK_m, spawn, SHCMD("jellyfinmediaplayer") },
  148. };
  149.  
  150. /* button definitions */
  151. /* click can be ClkTagBar, ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */
  152. static const Button buttons[] = {
  153. /* click event mask button function argument */
  154. { ClkLtSymbol, 0, Button1, setlayout, {0} },
  155. { ClkLtSymbol, 0, Button3, setlayout, {.v = &layouts[2]} },
  156. { ClkWinTitle, 0, Button2, zoom, {0} },
  157. { ClkStatusText, 0, Button2, spawn, {.v = termcmd } },
  158. { ClkClientWin, MODKEY, Button1, movemouse, {0} },
  159. { ClkClientWin, MODKEY, Button2, togglefloating, {0} },
  160. { ClkClientWin, MODKEY, Button3, resizemouse, {0} },
  161. { ClkTagBar, 0, Button1, view, {0} },
  162. { ClkTagBar, 0, Button3, toggleview, {0} },
  163. { ClkTagBar, MODKEY, Button1, tag, {0} },
  164. { ClkTagBar, MODKEY, Button3, toggletag, {0} },
  165. { ClkTagBar, 0, Button4, cycleiconset, {.i = +1 } },
  166. { ClkTagBar, 0, Button5, cycleiconset, {.i = -1 } },
  167. };
  168.  
  169.  
Tags: DWM
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement