Configuration of dwm for Mac Computers
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.

139 lines
7.8 KiB

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