Compare commits
3 Commits
8770c7b878
...
6786398753
Author | SHA1 | Date | |
---|---|---|---|
|
6786398753 | ||
|
e81a63ab1c | ||
|
7424a27ffc |
@ -33,6 +33,11 @@ static const unsigned int alphas[][3] = {
|
|||||||
/* tagging */
|
/* tagging */
|
||||||
static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
|
static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
|
||||||
|
|
||||||
|
static const unsigned int ulinepad = 5; /* horizontal padding between the underline and tag */
|
||||||
|
static const unsigned int ulinestroke = 2; /* thickness / height of the underline */
|
||||||
|
static const unsigned int ulinevoffset = 0; /* how far above the bottom of the bar the line should appear */
|
||||||
|
static const int ulineall = 0; /* 1 to show underline on all tags, 0 for just the active ones */
|
||||||
|
|
||||||
static const Rule rules[] = {
|
static const Rule rules[] = {
|
||||||
/* xprop(1):
|
/* xprop(1):
|
||||||
* WM_CLASS(STRING) = instance, class
|
* WM_CLASS(STRING) = instance, class
|
||||||
|
48
dwm.c
48
dwm.c
@ -888,6 +888,8 @@ drawbar(Monitor *m)
|
|||||||
w = TEXTW(tags[i]);
|
w = TEXTW(tags[i]);
|
||||||
drw_setscheme(drw, scheme[m->tagset[m->seltags] & 1 << i ? SchemeSel : SchemeNorm]);
|
drw_setscheme(drw, scheme[m->tagset[m->seltags] & 1 << i ? SchemeSel : SchemeNorm]);
|
||||||
drw_text(drw, x, 0, w, bh, lrpad / 2, tags[i], urg & 1 << i);
|
drw_text(drw, x, 0, w, bh, lrpad / 2, tags[i], urg & 1 << i);
|
||||||
|
if (ulineall || m->tagset[m->seltags] & 1 << i) /* if there are conflicts, just move these lines directly underneath both 'drw_setscheme' and 'drw_text' :) */
|
||||||
|
drw_rect(drw, x + ulinepad, bh - ulinestroke - ulinevoffset, w - (ulinepad * 2), ulinestroke, 1, 0);
|
||||||
if (occ & 1 << i)
|
if (occ & 1 << i)
|
||||||
drw_rect(drw, x + boxs, boxs, boxw, boxw,
|
drw_rect(drw, x + boxs, boxs, boxw, boxw,
|
||||||
m == selmon && selmon->sel && selmon->sel->tags & 1 << i,
|
m == selmon && selmon->sel && selmon->sel->tags & 1 << i,
|
||||||
@ -1674,10 +1676,15 @@ void
|
|||||||
resizemouse(const Arg *arg)
|
resizemouse(const Arg *arg)
|
||||||
{
|
{
|
||||||
int ocx, ocy, nw, nh;
|
int ocx, ocy, nw, nh;
|
||||||
|
int ocx2, ocy2, nx, ny;
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
Client *c;
|
Client *c;
|
||||||
Monitor *m;
|
Monitor *m;
|
||||||
XEvent ev;
|
XEvent ev;
|
||||||
|
int horizcorner, vertcorner;
|
||||||
|
int di;
|
||||||
|
unsigned int dui;
|
||||||
|
Window dummy;
|
||||||
Time lasttime = 0;
|
Time lasttime = 0;
|
||||||
|
|
||||||
if (!(c = selmon->sel))
|
if (!(c = selmon->sel))
|
||||||
@ -1687,12 +1694,20 @@ resizemouse(const Arg *arg)
|
|||||||
restack(selmon);
|
restack(selmon);
|
||||||
ocx = c->x;
|
ocx = c->x;
|
||||||
ocy = c->y;
|
ocy = c->y;
|
||||||
|
ocx2 = c->x + c->w;
|
||||||
|
ocy2 = c->y + c->h;
|
||||||
if (XGrabPointer(dpy, root, False, MOUSEMASK, GrabModeAsync, GrabModeAsync,
|
if (XGrabPointer(dpy, root, False, MOUSEMASK, GrabModeAsync, GrabModeAsync,
|
||||||
None, cursor[CurResize]->cursor, CurrentTime) != GrabSuccess)
|
None, cursor[CurResize]->cursor, CurrentTime) != GrabSuccess)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (c->isfloating || NULL == c->mon->lt[c->mon->sellt]->arrange) {
|
if (c->isfloating || NULL == c->mon->lt[c->mon->sellt]->arrange) {
|
||||||
XWarpPointer(dpy, None, c->win, 0, 0, 0, 0, c->w + c->bw - 1, c->h + c->bw - 1);
|
if (!XQueryPointer (dpy, c->win, &dummy, &dummy, &di, &di, &nx, &ny, &dui))
|
||||||
|
return;
|
||||||
|
horizcorner = nx < c->w / 2;
|
||||||
|
vertcorner = ny < c->h / 2;
|
||||||
|
XWarpPointer (dpy, None, c->win, 0, 0, 0, 0,
|
||||||
|
horizcorner ? (-c->bw) : (c->w + c->bw -1),
|
||||||
|
vertcorner ? (-c->bw) : (c->h + c->bw -1));
|
||||||
} else {
|
} else {
|
||||||
XWarpPointer(dpy, None, root, 0, 0, 0, 0,
|
XWarpPointer(dpy, None, root, 0, 0, 0, 0,
|
||||||
selmon->mx + (selmon->ww * selmon->mfact),
|
selmon->mx + (selmon->ww * selmon->mfact),
|
||||||
@ -1712,12 +1727,14 @@ resizemouse(const Arg *arg)
|
|||||||
if ((ev.xmotion.time - lasttime) <= (1000 / 60))
|
if ((ev.xmotion.time - lasttime) <= (1000 / 60))
|
||||||
continue;
|
continue;
|
||||||
lasttime = ev.xmotion.time;
|
lasttime = ev.xmotion.time;
|
||||||
|
nx = horizcorner ? ev.xmotion.x : c->x;
|
||||||
nw = MAX(ev.xmotion.x - ocx - 2 * c->bw + 1, 1);
|
ny = vertcorner ? ev.xmotion.y : c->y;
|
||||||
nh = MAX(ev.xmotion.y - ocy - 2 * c->bw + 1, 1);
|
nw = MAX(horizcorner ? (ocx2 - nx) : (ev.xmotion.x - ocx - 2 * c->bw + 1), 1);
|
||||||
|
nh = MAX(vertcorner ? (ocy2 - ny) : (ev.xmotion.y - ocy - 2 * c->bw + 1), 1);
|
||||||
|
|
||||||
if (!selmon->lt[selmon->sellt]->arrange || c->isfloating)
|
if (!selmon->lt[selmon->sellt]->arrange || c->isfloating)
|
||||||
resize(c, c->x, c->y, nw, nh, 1);
|
resize(c, nx, ny, nw, nh, 1);
|
||||||
|
/* >>>>>>HEAD */
|
||||||
else {
|
else {
|
||||||
selmon->mfact = (double) (ev.xmotion.x_root - selmon->mx) / (double) selmon->ww;
|
selmon->mfact = (double) (ev.xmotion.x_root - selmon->mx) / (double) selmon->ww;
|
||||||
for(i=0; i<LENGTH(tags); ++i)
|
for(i=0; i<LENGTH(tags); ++i)
|
||||||
@ -1727,19 +1744,30 @@ resizemouse(const Arg *arg)
|
|||||||
selmon->pertag->mfacts[0] = selmon->mfact;
|
selmon->pertag->mfacts[0] = selmon->mfact;
|
||||||
arrange(selmon);
|
arrange(selmon);
|
||||||
}
|
}
|
||||||
|
/* ======= */
|
||||||
|
/* if (c->mon->wx + nw >= selmon->wx && c->mon->wx + nw <= selmon->wx + selmon->ww */
|
||||||
|
/* && c->mon->wy + nh >= selmon->wy && c->mon->wy + nh <= selmon->wy + selmon->wh) */
|
||||||
|
/* { */
|
||||||
|
/* if (!c->isfloating && selmon->lt[selmon->sellt]->arrange */
|
||||||
|
/* && (abs(nw - c->w) > snap || abs(nh - c->h) > snap)) */
|
||||||
|
/* togglefloating(NULL); */
|
||||||
|
/* } */
|
||||||
|
/* */
|
||||||
|
/* >>>>>>> corners */
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
} while (ev.type != ButtonRelease);
|
}
|
||||||
|
while (ev.type != ButtonRelease);
|
||||||
|
|
||||||
if (c->isfloating || NULL == c->mon->lt[c->mon->sellt]->arrange) {
|
if (c->isfloating || NULL == c->mon->lt[c->mon->sellt]->arrange) {
|
||||||
XWarpPointer(dpy, None, c->win, 0, 0, 0, 0, c->w + c->bw - 1, c->h + c->bw - 1);
|
XWarpPointer(dpy, None, c->win, 0, 0, 0, 0,
|
||||||
|
horizcorner ? (-c->bw) : (c->w + c->bw - 1),
|
||||||
|
vertcorner ? (-c->bw) : (c->h + c->bw - 1));
|
||||||
} else {
|
} else {
|
||||||
XWarpPointer(dpy, None, root, 0, 0, 0, 0,
|
XWarpPointer(dpy, None, root, 0, 0, 0, 0,
|
||||||
selmon->mx + (selmon->ww * selmon->mfact),
|
selmon->mx + (selmon->ww * selmon->mfact),
|
||||||
selmon->my + (selmon->wh / 2)
|
selmon->my + (selmon->wh / 2));
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
XUngrabPointer(dpy, CurrentTime);
|
XUngrabPointer(dpy, CurrentTime);
|
||||||
while (XCheckMaskEvent(dpy, EnterWindowMask, &ev));
|
while (XCheckMaskEvent(dpy, EnterWindowMask, &ev));
|
||||||
if ((m = recttomon(c->x, c->y, c->w, c->h)) != selmon) {
|
if ((m = recttomon(c->x, c->y, c->w, c->h)) != selmon) {
|
||||||
|
27
patches/bar/appearance/dwm-underlinetags-6.2.diff
Normal file
27
patches/bar/appearance/dwm-underlinetags-6.2.diff
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
diff -pu dwm.git/config.def.h dwm.underlinetags/config.def.h
|
||||||
|
--- dwm.git/config.def.h 2021-02-27 20:04:32.030570909 -0600
|
||||||
|
+++ dwm.underlinetags/config.def.h 2021-03-16 16:42:26.278703624 -0500
|
||||||
|
@@ -21,6 +21,11 @@ static const char *colors[][3] = {
|
||||||
|
/* tagging */
|
||||||
|
static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
|
||||||
|
|
||||||
|
+static const unsigned int ulinepad = 5; /* horizontal padding between the underline and tag */
|
||||||
|
+static const unsigned int ulinestroke = 2; /* thickness / height of the underline */
|
||||||
|
+static const unsigned int ulinevoffset = 0; /* how far above the bottom of the bar the line should appear */
|
||||||
|
+static const int ulineall = 0; /* 1 to show underline on all tags, 0 for just the active ones */
|
||||||
|
+
|
||||||
|
static const Rule rules[] = {
|
||||||
|
/* xprop(1):
|
||||||
|
* WM_CLASS(STRING) = instance, class
|
||||||
|
diff -pu dwm.git/dwm.c dwm.underlinetags/dwm.c
|
||||||
|
--- dwm.git/dwm.c 2021-02-27 20:04:32.030570909 -0600
|
||||||
|
+++ dwm.underlinetags/dwm.c 2021-03-16 16:41:21.468077151 -0500
|
||||||
|
@@ -719,6 +719,8 @@ drawbar(Monitor *m)
|
||||||
|
w = TEXTW(tags[i]);
|
||||||
|
drw_setscheme(drw, scheme[m->tagset[m->seltags] & 1 << i ? SchemeSel : SchemeNorm]);
|
||||||
|
drw_text(drw, x, 0, w, bh, lrpad / 2, tags[i], urg & 1 << i);
|
||||||
|
+ if (ulineall || m->tagset[m->seltags] & 1 << i) /* if there are conflicts, just move these lines directly underneath both 'drw_setscheme' and 'drw_text' :) */
|
||||||
|
+ drw_rect(drw, x + ulinepad, bh - ulinestroke - ulinevoffset, w - (ulinepad * 2), ulinestroke, 1, 0);
|
||||||
|
if (occ & 1 << i)
|
||||||
|
drw_rect(drw, x + boxs, boxs, boxw, boxw,
|
||||||
|
m == selmon && selmon->sel && selmon->sel->tags & 1 << i,
|
68
patches/controls/dwm-resizecorners-6.2.diff
Normal file
68
patches/controls/dwm-resizecorners-6.2.diff
Normal file
@ -0,0 +1,68 @@
|
|||||||
|
diff -r -u a/dwm.c b/dwm.c
|
||||||
|
--- a/dwm.c 2019-02-02 07:55:28.000000000 -0500
|
||||||
|
+++ b/dwm.c 2022-01-17 22:38:33.614493243 -0500
|
||||||
|
@@ -1291,9 +1291,14 @@
|
||||||
|
resizemouse(const Arg *arg)
|
||||||
|
{
|
||||||
|
int ocx, ocy, nw, nh;
|
||||||
|
+ int ocx2, ocy2, nx, ny;
|
||||||
|
Client *c;
|
||||||
|
Monitor *m;
|
||||||
|
XEvent ev;
|
||||||
|
+ int horizcorner, vertcorner;
|
||||||
|
+ int di;
|
||||||
|
+ unsigned int dui;
|
||||||
|
+ Window dummy;
|
||||||
|
Time lasttime = 0;
|
||||||
|
|
||||||
|
if (!(c = selmon->sel))
|
||||||
|
@@ -1303,10 +1308,18 @@
|
||||||
|
restack(selmon);
|
||||||
|
ocx = c->x;
|
||||||
|
ocy = c->y;
|
||||||
|
+ ocx2 = c->x + c->w;
|
||||||
|
+ ocy2 = c->y + c->h;
|
||||||
|
if (XGrabPointer(dpy, root, False, MOUSEMASK, GrabModeAsync, GrabModeAsync,
|
||||||
|
None, cursor[CurResize]->cursor, CurrentTime) != GrabSuccess)
|
||||||
|
return;
|
||||||
|
- XWarpPointer(dpy, None, c->win, 0, 0, 0, 0, c->w + c->bw - 1, c->h + c->bw - 1);
|
||||||
|
+ if (!XQueryPointer (dpy, c->win, &dummy, &dummy, &di, &di, &nx, &ny, &dui))
|
||||||
|
+ return;
|
||||||
|
+ horizcorner = nx < c->w / 2;
|
||||||
|
+ vertcorner = ny < c->h / 2;
|
||||||
|
+ XWarpPointer (dpy, None, c->win, 0, 0, 0, 0,
|
||||||
|
+ horizcorner ? (-c->bw) : (c->w + c->bw -1),
|
||||||
|
+ vertcorner ? (-c->bw) : (c->h + c->bw -1));
|
||||||
|
do {
|
||||||
|
XMaskEvent(dpy, MOUSEMASK|ExposureMask|SubstructureRedirectMask, &ev);
|
||||||
|
switch(ev.type) {
|
||||||
|
@@ -1320,8 +1333,11 @@
|
||||||
|
continue;
|
||||||
|
lasttime = ev.xmotion.time;
|
||||||
|
|
||||||
|
- nw = MAX(ev.xmotion.x - ocx - 2 * c->bw + 1, 1);
|
||||||
|
- nh = MAX(ev.xmotion.y - ocy - 2 * c->bw + 1, 1);
|
||||||
|
+ nx = horizcorner ? ev.xmotion.x : c->x;
|
||||||
|
+ ny = vertcorner ? ev.xmotion.y : c->y;
|
||||||
|
+ nw = MAX(horizcorner ? (ocx2 - nx) : (ev.xmotion.x - ocx - 2 * c->bw + 1), 1);
|
||||||
|
+ nh = MAX(vertcorner ? (ocy2 - ny) : (ev.xmotion.y - ocy - 2 * c->bw + 1), 1);
|
||||||
|
+
|
||||||
|
if (c->mon->wx + nw >= selmon->wx && c->mon->wx + nw <= selmon->wx + selmon->ww
|
||||||
|
&& c->mon->wy + nh >= selmon->wy && c->mon->wy + nh <= selmon->wy + selmon->wh)
|
||||||
|
{
|
||||||
|
@@ -1330,11 +1346,13 @@
|
||||||
|
togglefloating(NULL);
|
||||||
|
}
|
||||||
|
if (!selmon->lt[selmon->sellt]->arrange || c->isfloating)
|
||||||
|
- resize(c, c->x, c->y, nw, nh, 1);
|
||||||
|
+ resize(c, nx, ny, nw, nh, 1);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
} while (ev.type != ButtonRelease);
|
||||||
|
- XWarpPointer(dpy, None, c->win, 0, 0, 0, 0, c->w + c->bw - 1, c->h + c->bw - 1);
|
||||||
|
+ XWarpPointer(dpy, None, c->win, 0, 0, 0, 0,
|
||||||
|
+ horizcorner ? (-c->bw) : (c->w + c->bw - 1),
|
||||||
|
+ vertcorner ? (-c->bw) : (c->h + c->bw - 1));
|
||||||
|
XUngrabPointer(dpy, CurrentTime);
|
||||||
|
while (XCheckMaskEvent(dpy, EnterWindowMask, &ev));
|
||||||
|
if ((m = recttomon(c->x, c->y, c->w, c->h)) != selmon) {
|
Loading…
Reference in New Issue
Block a user