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.

149 lines
8.4 KiB

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