Adding attachx, autostart, center, cyclelayouts, fancybar, flextile, focusonnetactive, losefullscreen, pertag, resizecorners, rotatestack, savefloats, single-tagset, statuspadding, switchtag, systray, tagallmon, tagmonfixfs, tagswapmon, togglefullscreen, windowrolerule and zoomswap patches
2020-04-07 16:24:23 +00:00
|
|
|
From 9ef9ccccf9cbd6341bc601ef1501a3188e9d49f5 Mon Sep 17 00:00:00 2001
|
|
|
|
From: bakkeby <bakkeby@gmail.com>
|
|
|
|
Date: Tue, 7 Apr 2020 12:37:13 +0200
|
|
|
|
Subject: [PATCH] Adding statuspadding patch
|
|
|
|
|
|
|
|
Refer to:
|
|
|
|
https://dwm.suckless.org/patches/statuspadding/
|
|
|
|
---
|
|
|
|
config.def.h | 2 ++
|
|
|
|
dwm.c | 8 ++++----
|
|
|
|
2 files changed, 6 insertions(+), 4 deletions(-)
|
|
|
|
|
|
|
|
diff --git a/config.def.h b/config.def.h
|
|
|
|
index 1c0b587..ea4c3fd 100644
|
|
|
|
--- a/config.def.h
|
|
|
|
+++ b/config.def.h
|
|
|
|
@@ -5,6 +5,8 @@ static const unsigned int borderpx = 1; /* border pixel of windows */
|
|
|
|
static const unsigned int snap = 32; /* snap pixel */
|
|
|
|
static const int showbar = 1; /* 0 means no bar */
|
|
|
|
static const int topbar = 1; /* 0 means bottom bar */
|
|
|
|
+static const int horizpadbar = 2; /* horizontal padding for statusbar */
|
|
|
|
+static const int vertpadbar = 0; /* vertical padding for statusbar */
|
|
|
|
static const char *fonts[] = { "monospace:size=10" };
|
|
|
|
static const char dmenufont[] = "monospace:size=10";
|
|
|
|
static const char col_gray1[] = "#222222";
|
|
|
|
diff --git a/dwm.c b/dwm.c
|
|
|
|
index 4465af1..35e8275 100644
|
|
|
|
--- a/dwm.c
|
|
|
|
+++ b/dwm.c
|
|
|
|
@@ -704,8 +704,8 @@ drawbar(Monitor *m)
|
|
|
|
/* draw status first so it can be overdrawn by tags later */
|
|
|
|
if (m == selmon) { /* status is only drawn on selected monitor */
|
|
|
|
drw_setscheme(drw, scheme[SchemeNorm]);
|
|
|
|
- sw = TEXTW(stext) - lrpad + 2; /* 2px right padding */
|
|
|
|
- drw_text(drw, m->ww - sw, 0, sw, bh, 0, stext, 0);
|
|
|
|
+ sw = TEXTW(stext);
|
|
|
|
+ drw_text(drw, m->ww - sw, 0, sw, bh, lrpad / 2, stext, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (c = m->clients; c; c = c->next) {
|
|
|
|
@@ -1544,8 +1544,8 @@ setup(void)
|
|
|
|
drw = drw_create(dpy, screen, root, sw, sh);
|
|
|
|
if (!drw_fontset_create(drw, fonts, LENGTH(fonts)))
|
|
|
|
die("no fonts could be loaded.");
|
|
|
|
- lrpad = drw->fonts->h;
|
|
|
|
- bh = drw->fonts->h + 2;
|
|
|
|
+ lrpad = drw->fonts->h + horizpadbar;
|
|
|
|
+ bh = drw->fonts->h + vertpadbar;
|
|
|
|
updategeom();
|
|
|
|
/* init atoms */
|
|
|
|
utf8string = XInternAtom(dpy, "UTF8_STRING", False);
|
|
|
|
--
|
2020-05-01 20:54:26 +00:00
|
|
|
2.19.1
|
Adding attachx, autostart, center, cyclelayouts, fancybar, flextile, focusonnetactive, losefullscreen, pertag, resizecorners, rotatestack, savefloats, single-tagset, statuspadding, switchtag, systray, tagallmon, tagmonfixfs, tagswapmon, togglefullscreen, windowrolerule and zoomswap patches
2020-04-07 16:24:23 +00:00
|
|
|
|