This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch tymux
in repository terminology.
View the commit online.
commit fb3bd44630cb4eb48ff86bde68ab8690c6f7f828
Author: [email protected] <[email protected]>
AuthorDate: Thu Mar 19 11:24:33 2026 -0600
fix: use explicit color for tymux indicator on-state
The "on" state inherited color 0,0,0,0 from "default" and applied
color_class as a multiplier — multiplying zero by any color gives
zero, so the indicator was always transparent. Use an explicit
color: 255,255,255,255 in the "on" state so the color_class tint
is actually visible.
Co-Authored-By: Claude Opus 4.6 (1M context) <[email protected]>
---
data/themes/default/background.edc | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/data/themes/default/background.edc b/data/themes/default/background.edc
index e6d0a39c..fc09c292 100644
--- a/data/themes/default/background.edc
+++ b/data/themes/default/background.edc
@@ -1601,8 +1601,14 @@ group { name: "terminology/background";
visible: 0;
}
description { state: "on" 0.0;
- inherit: "default" 0.0;
+ rel1 { relative: 0.0 0.0; }
+ rel2 { relative: 0.0 1.0; }
+ min: 2 0;
+ max: 2 -1;
+ fixed: 1 0;
+ align: 0.0 0.5;
color_class: ":tymux-indicator";
+ color: 255 255 255 255;
visible: 1;
}
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.