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 9fd9c36f65ce6d8b9084de27d11b3c37f0a37e00
Author: [email protected] <[email protected]>
AuthorDate: Thu Mar 19 09:57:21 2026 -0600
fix: make tymux indicator 1px wide using min/max constraints
The RECT part had rel1.x == rel2.x with no size constraint, making
it 0px wide and invisible. Use min/max/fixed/align to force exactly
1px width, left-aligned against the window edge.
Co-Authored-By: Claude Opus 4.6 (1M context) <[email protected]>
---
data/themes/default/background.edc | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/data/themes/default/background.edc b/data/themes/default/background.edc
index 9b9df265..605b076f 100644
--- a/data/themes/default/background.edc
+++ b/data/themes/default/background.edc
@@ -70,7 +70,11 @@ group { name: "terminology/background";
part { name: "tymux_indicator"; type: RECT; mouse_events: 0;
description { state: "default" 0.0;
rel1 { relative: 0.0 0.0; }
- rel2 { relative: 0.0 1.0; offset: 0 -1; }
+ rel2 { relative: 0.0 1.0; }
+ min: 1 0;
+ max: 1 -1;
+ fixed: 1 0;
+ align: 0.0 0.5;
color: 0 0 0 0;
visible: 0;
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.