From 32e01b81793aebfc60682093c7796bda0e17feab Mon Sep 17 00:00:00 2001 From: tiyn Date: Tue, 24 Oct 2023 05:45:24 +0200 Subject: [PATCH] added notitle patch to config --- README.md | 1 + config.def.h | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7f2edb8..473d64e 100644 --- a/README.md +++ b/README.md @@ -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-deck-6.0.diff (adds deck layout) - dwm-noborder-6.2.diff (removes border if there is only one window) +- dwm-notitle-6.2.diff (removes window title in the middle of the bar) - 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-statusallmons-6.2.diff (display statusbar on every monitors) diff --git a/config.def.h b/config.def.h index e4a9e6f..77019cf 100644 --- a/config.def.h +++ b/config.def.h @@ -122,13 +122,12 @@ static Key keys[] = { }; /* button definitions */ -/* click can be ClkTagBar, ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */ +/* click can be ClkTagBar, ClkLtSymbol, ClkStatusText, ClkClientWin, or ClkRootWin */ static Button buttons[] = { /* click event mask button function argument */ { ClkLtSymbol, 0, Button1, cyclelayout, {.i = +1} }, { ClkLtSymbol, 0, Button2, setlayout, {.v = &layouts[0]} }, { ClkLtSymbol, 0, Button3, cyclelayout, {.i = -1} }, - { ClkWinTitle, 0, Button2, focusstack, {.i = +1} }, { ClkStatusText, 0, Button1, sigdwmblocks, {.i = 1} }, { ClkStatusText, 0, Button2, sigdwmblocks, {.i = 2} }, { ClkStatusText, 0, Button3, sigdwmblocks, {.i = 3} },