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 d7a88f37114fee78feccbee1f62c2a7c87212311
Author: [email protected] <[email protected]>
AuthorDate: Thu Mar 19 10:02:18 2026 -0600

    fix: make tymux indicator visible — render on top, 2px wide, bright green
    
    The indicator was invisible because it was placed early in the part
    list (covered by later parts) and was only 1px wide. Move it to the
    very end of the parts list so it renders on top of everything, widen
    to 2px, and use full-brightness green (0 255 0).
    
    Co-Authored-By: Claude Opus 4.6 (1M context) <[email protected]>
---
 data/themes/default/background.edc | 39 +++++++++++++++++++-------------------
 data/themes/default/colors.edc     |  2 +-
 2 files changed, 21 insertions(+), 20 deletions(-)

diff --git a/data/themes/default/background.edc b/data/themes/default/background.edc
index 605b076f..e6d0a39c 100644
--- a/data/themes/default/background.edc
+++ b/data/themes/default/background.edc
@@ -66,25 +66,6 @@ group { name: "terminology/background";
          }
       }
       ////////////////////////////////////////////////////////////////////
-      // tymux session indicator — 1px green bar on left edge
-      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; }
-            min: 1 0;
-            max: 1 -1;
-            fixed: 1 0;
-            align: 0.0 0.5;
-            color: 0 0 0 0;
-            visible: 0;
-         }
-         description { state: "on" 0.0;
-            inherit: "default" 0.0;
-            color_class: ":tymux-indicator";
-            visible: 1;
-         }
-      }
-      ////////////////////////////////////////////////////////////////////
       // indicator of other tabs and control {{{
       part { name: "tabcount_clip"; type: RECT;
          description { state: "default" 0.0;
@@ -1605,6 +1586,26 @@ group { name: "terminology/background";
       }
       BUSY("busy_base", "busy", "terminology", "done", "terminology")
       // }}}
+
+      ////////////////////////////////////////////////////////////////////
+      // tymux session indicator — 2px green bar on left edge (topmost)
+      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; }
+            min: 2 0;
+            max: 2 -1;
+            fixed: 1 0;
+            align: 0.0 0.5;
+            color: 0 0 0 0;
+            visible: 0;
+         }
+         description { state: "on" 0.0;
+            inherit: "default" 0.0;
+            color_class: ":tymux-indicator";
+            visible: 1;
+         }
+      }
    }
 }
 
diff --git a/data/themes/default/colors.edc b/data/themes/default/colors.edc
index 45506be1..7d8bae32 100644
--- a/data/themes/default/colors.edc
+++ b/data/themes/default/colors.edc
@@ -19,4 +19,4 @@ color_class { name: ":selected";        color:  51 153 255 255; }
 color_class { name: ":selected-alt";    color: 255 153  51 255; }
 color_class { name: ":shadow";          color:   0   0   0 128; }
 color_class { name: ":shadow-selected"; color:   0   0   0 255; }
-color_class { name: ":tymux-indicator"; color:   0 200   0 255; }
+color_class { name: ":tymux-indicator"; color:   0 255   0 255; }

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.

Reply via email to