mirror of
https://codeberg.org/dwl/dwl-patches.git
synced 2025-10-27 02:04:16 +00:00
Add focusonurgent: change dwl behavior to focus on the window that request urgency
This commit is contained in:
parent
c13663c38f
commit
a3ca7c1aa4
12
patches/focusonurgent/README.md
Normal file
12
patches/focusonurgent/README.md
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
### Description
|
||||||
|
|
||||||
|
By default, dwl response to client requests to client messages by setting the urgency bit on the named window.
|
||||||
|
This patch changes the focus to the window instead.
|
||||||
|
Both behaviours are legitimate according to the cursed spec.
|
||||||
|
This is the approximately the equivalent of the focusonactive patch of dwm.
|
||||||
|
|
||||||
|
### Download
|
||||||
|
- [git branch](https://codeberg.org/Kana/dwl/src/branch/focusonurgent)
|
||||||
|
- [main 2025-10-08](https://codeberg.org/dwl/dwl-patches/raw/branch/main/patches/focusonurgent/focusonurgent.patch)
|
||||||
|
### Authors
|
||||||
|
- [André Desgualdo Pereira](https://codeberg.org/Kana)
|
||||||
35
patches/focusonurgent/focusonurgent.patch
Normal file
35
patches/focusonurgent/focusonurgent.patch
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
From f250d06bdfbe45aaa56a316338ec2b2c143d91e3 Mon Sep 17 00:00:00 2001
|
||||||
|
From: =?UTF-8?q?Andr=C3=A9=20Desgualdo=20Pereira?= <desgua@gmail.com>
|
||||||
|
Date: Wed, 8 Oct 2025 12:03:27 -0300
|
||||||
|
Subject: [PATCH] patch: By default, dwl response to client requests to client
|
||||||
|
messages by setting the urgency bit on the named window. This patch changes
|
||||||
|
the focus to the window instead. Both behaviours are legitimate according to
|
||||||
|
the cursed spec. This is the approximately the equivalent of the
|
||||||
|
focusonactive patch of dwm.
|
||||||
|
|
||||||
|
---
|
||||||
|
dwl.c | 3 ++-
|
||||||
|
focusonurgent.patch | 0
|
||||||
|
2 files changed, 2 insertions(+), 1 deletion(-)
|
||||||
|
create mode 100644 focusonurgent.patch
|
||||||
|
|
||||||
|
diff --git a/dwl.c b/dwl.c
|
||||||
|
index 12f441e..760a66c 100644
|
||||||
|
--- a/dwl.c
|
||||||
|
+++ b/dwl.c
|
||||||
|
@@ -2098,7 +2098,8 @@ printstatus(void)
|
||||||
|
continue;
|
||||||
|
occ |= c->tags;
|
||||||
|
if (c->isurgent)
|
||||||
|
- urg |= c->tags;
|
||||||
|
+ view(&((Arg){ .ui = c->tags }));
|
||||||
|
+ focusclient(c, 1);
|
||||||
|
}
|
||||||
|
if ((c = focustop(m))) {
|
||||||
|
printf("%s title %s\n", m->wlr_output->name, client_get_title(c));
|
||||||
|
diff --git a/focusonurgent.patch b/focusonurgent.patch
|
||||||
|
new file mode 100644
|
||||||
|
index 0000000..e69de29
|
||||||
|
--
|
||||||
|
2.51.0
|
||||||
|
|
||||||
Loading…
x
Reference in New Issue
Block a user