Merge pull request #3926 from casKd-dev/dwl/hide-title

dwl/window: allow hiding of title when either inactive or empty
This commit is contained in:
Alexis Rouillard
2026-07-03 23:20:36 +02:00
committed by GitHub
3 changed files with 45 additions and 2 deletions
+4
View File
@@ -19,6 +19,7 @@ class Window : public AAppIconLabel, public sigc::trackable {
void handle_layout(const uint32_t layout);
void handle_title(const char* title);
void handle_appid(const char* ppid);
void handle_active(const uint32_t active);
void handle_layout_symbol(const char* layout_symbol);
void handle_frame();
@@ -30,6 +31,9 @@ class Window : public AAppIconLabel, public sigc::trackable {
std::string title_;
std::string appid_;
std::string layout_symbol_;
bool active_;
bool hide_inactive_;
bool hide_empty_;
uint32_t layout_;
struct zdwl_ipc_output_v2* output_status_;