dwm

[fork] dynamic window manager
Log | Files | Refs | README | LICENSE

commit 3fda3dec7bada5dd90f949e9984463933d7e746d
parent b9567a2f0fe69bd3d29c4d4cb7d221123edd4e36
Author: hhvn <hayden@haydenvh.com>
Date:   Sun, 22 Nov 2020 22:40:49 +0000

Revert 282e6de

Diffstat:
Mconfig.h | 1-
Mdwm.c | 2--
2 files changed, 0 insertions(+), 3 deletions(-)

diff --git a/config.h b/config.h @@ -3,7 +3,6 @@ /* appearance */ static const unsigned int borderpx = 2; /* border pixel of windows */ static const unsigned int gappx = 10; -static const unsigned int titlepx = 180; /* max pixel size of each title, 0 for no max */ static const unsigned int snap = 1; /* snap pixel */ static const int showbar = 1; /* 0 means no bar */ static const int topbar = 1; /* 0 means bottom bar */ diff --git a/dwm.c b/dwm.c @@ -824,8 +824,6 @@ drawbar(Monitor *m) if (n > 0) { int remainder = w % n; int tabw = (1.0 / (double)n) * w + 1; - if (tabw > titlepx && titlepx != 0) - tabw = titlepx; for (c = m->clients; c; c = c->next) { if (!ISVISIBLE(c)) continue;