~ruther/guix-config

ref: de5aab5b137baf837c54b320dc7b9add297f8f1f guix-config/home/dwl/dwl-ipc-waybar.patch -rw-r--r-- 1.7 KiB
de5aab5b — Rutherther fix: pulseaudio autospawn correct syntax 7 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
From 98b08880409cfd1277dc491b2f89de39a5107e50 Mon Sep 17 00:00:00 2001
From: Rutherther <rutherther@proton.me>
Date: Thu, 2 May 2024 22:39:00 +0200
Subject: [PATCH] feat: add DWL active_other for singletagset

---
 protocol/dwl-ipc-unstable-v2.xml | 1 +
 src/modules/dwl/tags.cpp         | 7 +++++++
 2 files changed, 8 insertions(+)

diff --git a/protocol/dwl-ipc-unstable-v2.xml b/protocol/dwl-ipc-unstable-v2.xml
index 74a212f07..be5bda9d5 100644
--- a/protocol/dwl-ipc-unstable-v2.xml
+++ b/protocol/dwl-ipc-unstable-v2.xml
@@ -75,6 +75,7 @@ I would probably just submit raphi's patchset but I don't think that would be po
       <entry name="none" value="0" summary="no state"/>
       <entry name="active" value="1" summary="tag is active"/>
       <entry name="urgent" value="2" summary="tag has at least one urgent client"/>
+      <entry name="active_other" value="4" summary="tag is active on another monitor"/>
     </enum>
 
     <request name="release" type="destructor">
diff --git a/src/modules/dwl/tags.cpp b/src/modules/dwl/tags.cpp
index 085b82246..462ae91b9 100644
--- a/src/modules/dwl/tags.cpp
+++ b/src/modules/dwl/tags.cpp
@@ -13,6 +13,7 @@
 #define TAG_INACTIVE 0
 #define TAG_ACTIVE 1
 #define TAG_URGENT 2
+#define TAG_ACTIVE_OTHER 4
 
 namespace waybar::modules::dwl {
 
@@ -198,6 +199,12 @@ void Tags::handle_view_tags(uint32_t tag, uint32_t state, uint32_t clients, uint
   } else {
     button.get_style_context()->remove_class("urgent");
   }
+
+  if (state & TAG_ACTIVE_OTHER) {
+    button.get_style_context()->add_class("focused-other");
+  } else {
+    button.get_style_context()->remove_class("focused-other");
+  }
 }
 
 } /* namespace waybar::modules::dwl */
Do not follow this link