1
0
mirror of https://github.com/tiyn/dwm.git synced 2025-05-12 02:27:46 +02:00

Compare commits

...

2 Commits

Author SHA1 Message Date
ce1fe35578 added notitle patch to readme 2023-10-24 05:02:38 +02:00
ddec9f35ab added notitle patch to readme 2023-10-24 05:02:28 +02:00
2 changed files with 1 additions and 1 deletions

View File

@ -21,6 +21,7 @@ The list below shows the currently applied patches to the master branch.
- dwm-cyclelayouts-20180524-6.2.diff (adds ability to cycle through layouts) - dwm-cyclelayouts-20180524-6.2.diff (adds ability to cycle through layouts)
- dwm-deck-6.0.diff (adds deck layout) - dwm-deck-6.0.diff (adds deck layout)
- dwm-noborder-6.2.diff (removes border if there is only one window) - dwm-noborder-6.2.diff (removes border if there is only one window)
- dwm-notitle-6.2.diff (removes the title of the window in the middle of the bar)
- dwm-pertag-20170513-ceac8c9.diff (allows having a layout/mwfact/barpos/nmaster per tag) - dwm-pertag-20170513-ceac8c9.diff (allows having a layout/mwfact/barpos/nmaster per tag)
- dwm-status2d-6.2.diff (adds colors and ability to draw rectangles) - dwm-status2d-6.2.diff (adds colors and ability to draw rectangles)
- dwm-statusallmons-6.2.diff (display statusbar on every monitors) - dwm-statusallmons-6.2.diff (display statusbar on every monitors)

View File

@ -128,7 +128,6 @@ static Button buttons[] = {
{ ClkLtSymbol, 0, Button1, cyclelayout, {.i = +1} }, { ClkLtSymbol, 0, Button1, cyclelayout, {.i = +1} },
{ ClkLtSymbol, 0, Button2, setlayout, {.v = &layouts[0]} }, { ClkLtSymbol, 0, Button2, setlayout, {.v = &layouts[0]} },
{ ClkLtSymbol, 0, Button3, cyclelayout, {.i = -1} }, { ClkLtSymbol, 0, Button3, cyclelayout, {.i = -1} },
{ ClkWinTitle, 0, Button2, focusstack, {.i = +1} },
{ ClkStatusText, 0, Button1, sigdwmblocks, {.i = 1} }, { ClkStatusText, 0, Button1, sigdwmblocks, {.i = 1} },
{ ClkStatusText, 0, Button2, sigdwmblocks, {.i = 2} }, { ClkStatusText, 0, Button2, sigdwmblocks, {.i = 2} },
{ ClkStatusText, 0, Button3, sigdwmblocks, {.i = 3} }, { ClkStatusText, 0, Button3, sigdwmblocks, {.i = 3} },