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