suckless/dwm

apply urg-border patch (70b55206b159d25de5f81fa0a573df4200eded64)
Repositories | README | LICENSE

commit 70b55206b159d25de5f81fa0a573df4200eded64
parent 0e6c5be01083327a1914153de0fb055f00afde40
Author: Friedel Schön <[email protected]>
Date:   Mon,  9 Dec 2024 12:23:38 +0100

apply urg-border patch

Diffstat:
Mconfig.def.h2++
Mdwm.c7+++++--
2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/config.def.h b/config.def.h @@ -12,10 +12,12 @@ static const char col_gray2[] = "#444444"; static const char col_gray3[] = "#bbbbbb"; static const char col_gray4[] = "#eeeeee"; static const char col_cyan[] = "#005577"; +static const char col_urgborder[] = "#ff0000"; static const char *colors[][3] = { /* fg bg border */ [SchemeNorm] = { col_gray3, col_gray1, col_gray2 }, [SchemeSel] = { col_gray4, col_cyan, col_cyan }, + [SchemeUrg] = { col_gray4, col_cyan, col_urgborder }, }; /* tagging */ diff --git a/dwm.c b/dwm.c @@ -73,7 +73,7 @@ /* enums */ enum { CurNormal, CurResize, CurMove, CurLast }; /* cursor */ -enum { SchemeNorm, SchemeSel }; /* color schemes */ +enum { SchemeNorm, SchemeSel, SchemeUrg }; /* color schemes */ enum { NetSupported, NetWMName, NetWMState, NetWMCheck, NetSystemTray, NetSystemTrayOP, NetSystemTrayOrientation, NetSystemTrayOrientationHorz, NetWMFullscreen, NetActiveWindow, NetWMWindowType, @@ -2453,8 +2453,11 @@ updatewmhints(Client *c) if (c == selmon->sel && wmh->flags & XUrgencyHint) { wmh->flags &= ~XUrgencyHint; XSetWMHints(dpy, c->win, wmh); - } else + } else { c->isurgent = (wmh->flags & XUrgencyHint) ? 1 : 0; + if (c->isurgent) + XSetWindowBorder(dpy, c->win, scheme[SchemeUrg][ColBorder].pixel); + } if (wmh->flags & InputHint) c->neverfocus = !wmh->input; else