summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorbakkeby <[email protected]>2019-10-24 07:35:00 +0200
committerbakkeby <[email protected]>2019-10-24 10:35:24 +0200
commit4052783a63e1368a6f7595e61d41835e77cd7746 (patch)
tree14eaf1dd7e46d5c81d80786534d0cf9f015590ec
parent9e53b46e35b09533448b8c58d7ec5727ad978e87 (diff)
downloaddwm-flexipatch-4052783a63e1368a6f7595e61d41835e77cd7746.tar.gz
dwm-flexipatch-4052783a63e1368a6f7595e61d41835e77cd7746.zip
Adding extrabar patch
-rw-r--r--README.md6
-rw-r--r--config.def.h3
-rw-r--r--dwm.c83
-rw-r--r--patches.h7
4 files changed, 98 insertions, 1 deletions
diff --git a/README.md b/README.md
index 195aa35..9c70f22 100644
--- a/README.md
+++ b/README.md
@@ -15,7 +15,7 @@ Refer to [https://dwm.suckless.org/](https://dwm.suckless.org/) for details on t
### Changelog:
-2019-10-24 - Added dragmfact patch
+2019-10-24 - Added dragmfact and extrabar patches
2019-10-22 - Added ispermanent and swallow patches
@@ -128,6 +128,10 @@ Refer to [https://dwm.suckless.org/](https://dwm.suckless.org/) for details on t
- [ewmhtags](https://dwm.suckless.org/patches/ewmhtags/)
- adds EWMH support for \_NET_NUMBER_OF_DESKTOPS, \_NET_CURRENT_DESKTOP, \_NET_DESKTOP_NAMES and \_NET_DESKTOP_VIEWPORT, which allows for compatibility with other bars and programs that request workspace information, e.g. polybar's xworkspaces module
+ - [extrabar](https://dwm.suckless.org/patches/extrabar/)
+ - enables an extra status bar in dwm in a similar manner to the dualstatus patch
+ - if the primary status is at the top via topbar then the extra status bar will be placed at the bottom and vice versa
+
- [fakefullscreen](https://dwm.suckless.org/patches/fakefullscreen/)
- only allow clients to "fullscreen" into the space currently given to them
- as an example, this will allow you to view a fullscreen video in your browser on one half of the screen, while having the other half available for other tasks
diff --git a/config.def.h b/config.def.h
index 7c867e2..73c0164 100644
--- a/config.def.h
+++ b/config.def.h
@@ -32,6 +32,9 @@ static const int showsystray = 1; /* 0 means no systray */
#if ONLYQUITONEMPTY_PATCH
static const int quit_empty_window_count = 2; /* only allow dwm to quit if no windows are open, value here represents number of deamons */
#endif // ONLYQUITONEMPTY_PATCH
+#if EXTRABAR_PATCH
+static const char statussep = ';'; /* separator between status bars */
+#endif // EXTRABAR_PATCH
static const char *fonts[] = { "monospace:size=10" };
static const char dmenufont[] = "monospace:size=10";
diff --git a/dwm.c b/dwm.c
index 6baee23..629d3f8 100644
--- a/dwm.c
+++ b/dwm.c
@@ -218,6 +218,9 @@ struct Monitor {
int nmaster;
int num;
int by; /* bar geometry */
+ #if EXTRABAR_PATCH
+ int eby; /* extra bar geometry */
+ #endif // EXTRABAR_PATCH
#if AWESOMEBAR_PATCH
int btw; /* width of tasks portion of bar */
int bt; /* number of tasks */
@@ -243,6 +246,9 @@ struct Monitor {
Client *stack;
Monitor *next;
Window barwin;
+ #if EXTRABAR_PATCH
+ Window extrabarwin;
+ #endif // EXTRABAR_PATCH
const Layout *lt[2];
#if ALTERNATIVE_TAGS_PATCH
unsigned int alttag;
@@ -394,6 +400,9 @@ static void zoom(const Arg *arg);
/* variables */
static const char broken[] = "broken";
static char stext[256];
+#if EXTRABAR_PATCH
+static char estext[256];
+#endif // EXTRABAR_PATCH
static int screen;
static int sw, sh; /* X display screen geometry width, height */
static int bh, blw = 0; /* bar geometry */
@@ -882,7 +891,13 @@ cleanupmon(Monitor *mon)
m->next = mon->next;
}
XUnmapWindow(dpy, mon->barwin);
+ #if EXTRABAR_PATCH
+ XUnmapWindow(dpy, mon->extrabarwin);
+ #endif // EXTRABAR_PATCH
XDestroyWindow(dpy, mon->barwin);
+ #if EXTRABAR_PATCH
+ XDestroyWindow(dpy, mon->extrabarwin);
+ #endif // EXTRABAR_PATCH
free(mon);
}
@@ -1016,6 +1031,9 @@ configurenotify(XEvent *e)
resizeclient(c, m->mx, m->my, m->mw, m->mh);
#endif // !FAKEFULLSCREEN_PATCH
XMoveResizeWindow(dpy, m->barwin, m->wx, m->by, m->ww, bh);
+ #if EXTRABAR_PATCH
+ XMoveResizeWindow(dpy, m->extrabarwin, m->wx, m->eby, m->ww, bh);
+ #endif // EXTRABAR_PATCH
}
focus(NULL);
arrange(NULL);
@@ -1539,6 +1557,13 @@ drawbar(Monitor *m)
#else
drw_map(drw, m->barwin, 0, 0, m->ww, bh);
#endif // SYSTRAY_PATCH
+ #if EXTRABAR_PATCH
+ if (m == selmon) { /* extra status is only drawn on selected monitor */
+ drw_setscheme(drw, scheme[SchemeNorm]);
+ drw_text(drw, 0, 0, mons->ww, bh, 0, estext, 0);
+ drw_map(drw, m->extrabarwin, 0, 0, m->ww, bh);
+ }
+ #endif // EXTRABAR_PATCH
}
void
@@ -2996,6 +3021,9 @@ togglebar(const Arg *arg)
#endif // PERTAG_PATCH
updatebarpos(selmon);
XMoveResizeWindow(dpy, selmon->barwin, selmon->wx, selmon->by, selmon->ww, bh);
+ #if EXTRABAR_PATCH
+ XMoveResizeWindow(dpy, selmon->extrabarwin, selmon->wx, selmon->eby, selmon->ww, bh);
+ #endif // EXTRABAR_PATCH
#if SYSTRAY_PATCH
if (showsystray) {
XWindowChanges wc;
@@ -3254,8 +3282,12 @@ updatebars(void)
};
XClassHint ch = {"dwm", "dwm"};
for (m = mons; m; m = m->next) {
+ #if EXTRABAR_PATCH
+ if (!m->barwin) {
+ #else
if (m->barwin)
continue;
+ #endif // EXTRABAR_PATCH
w = m->ww;
#if SYSTRAY_PATCH
if (showsystray && m == systraytomon(m))
@@ -3277,6 +3309,24 @@ updatebars(void)
#endif // SYSTRAY_PATCH
XMapRaised(dpy, m->barwin);
XSetClassHint(dpy, m->barwin, &ch);
+ #if EXTRABAR_PATCH
+ }
+ if (!m->extrabarwin) {
+ #if ALPHA_PATCH
+ m->extrabarwin = XCreateWindow(dpy, root, m->wx, m->eby, m->ww, bh, 0, depth,
+ InputOutput, visual,
+ CWOverrideRedirect|CWBackPixel|CWBorderPixel|CWColormap|CWEventMask, &wa);
+ #else
+ m->extrabarwin = XCreateWindow(dpy, root, m->wx, m->eby, m->ww, bh, 0, DefaultDepth(dpy, screen),
+ CopyFromParent, DefaultVisual(dpy, screen),
+ CWOverrideRedirect|CWBackPixmap|CWEventMask, &wa);
+ #endif // ALPHA_PATCH
+ XDefineCursor(dpy, m->extrabarwin, cursor[CurNormal]->cursor);
+ XMapRaised(dpy, m->extrabarwin);
+ XSetClassHint(dpy, m->extrabarwin, &ch);
+ }
+ #endif // EXTRABAR_PATCH
+
}
}
@@ -3285,12 +3335,24 @@ updatebarpos(Monitor *m)
{
m->wy = m->my;
m->wh = m->mh;
+ #if EXTRABAR_PATCH
+ m->wh -= bh * m->showbar * 2;
+ m->wy = m->showbar ? m->wy + bh : m->wy;
+ if (m->showbar) {
+ m->by = m->topbar ? m->wy - bh : m->wy + m->wh;
+ m->eby = m->topbar ? m->wy + m->wh : m->wy - bh;
+ } else {
+ m->by = -bh;
+ m->eby = -bh;
+ }
+ #else
if (m->showbar) {
m->wh -= bh;
m->by = m->topbar ? m->wy : m->wy + m->wh;
m->wy = m->topbar ? m->wy + bh : m->wy;
} else
m->by = -bh;
+ #endif // EXTRABAR_PATCH
}
void
@@ -3453,8 +3515,25 @@ updatestatus(void)
#if STATUSALLMONS_PATCH
Monitor* m;
#endif // STATUSALLMONS_PATCH
+ #if EXTRABAR_PATCH
+ char text[512];
+ if (!gettextprop(root, XA_WM_NAME, text, sizeof(text))) {
+ strcpy(stext, "dwm-"VERSION);
+ estext[0] = '\0';
+ } else {
+ char *e = strchr(text, statussep);
+ if (e) {
+ *e = '\0'; e++;
+ strncpy(estext, e, sizeof(estext) - 1);
+ } else {
+ estext[0] = '\0';
+ }
+ strncpy(stext, text, sizeof(stext) - 1);
+ }
+ #else
if (!gettextprop(root, XA_WM_NAME, stext, sizeof(stext)))
strcpy(stext, "dwm-"VERSION);
+ #endif // EXTRABAR_PATCH
#if STATUSALLMONS_PATCH
for (m = mons; m; m = m->next)
drawbar(m);
@@ -3568,7 +3647,11 @@ wintomon(Window w)
if (w == root && getrootptr(&x, &y))
return recttomon(x, y, 1, 1);
for (m = mons; m; m = m->next)
+ #if EXTRABAR_PATCH
+ if (w == m->barwin || w == m->extrabarwin)
+ #else
if (w == m->barwin)
+ #endif // EXTRABAR_PATCH
return m;
if ((c = wintoclient(w)))
return c->mon;
diff --git a/patches.h b/patches.h
index 83c9208..33db1b1 100644
--- a/patches.h
+++ b/patches.h
@@ -143,6 +143,13 @@
*/
#define EWMHTAGS_PATCH 0
+/* This patch will enable an extra status bar in dwm in a similar manner to the dualstatus
+ * patch. If the primary status is at the top via topbar then the extra status bar will be
+ * placed at the bottom and vice versa.
+ * https://dwm.suckless.org/patches/extrabar/
+ */
+#define EXTRABAR_PATCH 0
+
/* Only allow clients to "fullscreen" into the space currently given to them.
* As an example, this will allow you to view a fullscreen video in your browser on
* one half of the screen, while having the other half available for other tasks.