From 7517c8b62435f8cb5bfe337cf13a2bc6c286c4a9 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sun, 17 May 2026 18:03:11 +0200 Subject: [PATCH] Smooth transition of bar with theme changes --- default/quickshell/omarchy-shell/plugins/bar/Bar.qml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/default/quickshell/omarchy-shell/plugins/bar/Bar.qml b/default/quickshell/omarchy-shell/plugins/bar/Bar.qml index 664c9ce1..b32f34d2 100644 --- a/default/quickshell/omarchy-shell/plugins/bar/Bar.qml +++ b/default/quickshell/omarchy-shell/plugins/bar/Bar.qml @@ -57,6 +57,10 @@ Item { property color foreground: Color.bar.text property color background: Color.bar.background property color urgent: Color.bar.active + + Behavior on foreground { ColorAnimation { duration: 420; easing.type: Easing.InOutCubic } } + Behavior on background { ColorAnimation { duration: 420; easing.type: Easing.InOutCubic } } + Behavior on urgent { ColorAnimation { duration: 420; easing.type: Easing.InOutCubic } } property string weatherText: "" property string weatherClass: "" property bool updateAvailable: false