From b172020f5bc6f0dc5e3fd3fbc7976a3a9ee5c278 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Sun, 1 Jun 2025 09:51:45 +0200 Subject: [PATCH] workspace: adjust active indicator anim curve --- .config/quickshell/modules/bar/Workspaces.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.config/quickshell/modules/bar/Workspaces.qml b/.config/quickshell/modules/bar/Workspaces.qml index ecfd697c1..4639edd22 100644 --- a/.config/quickshell/modules/bar/Workspaces.qml +++ b/.config/quickshell/modules/bar/Workspaces.qml @@ -147,13 +147,13 @@ Item { Behavior on idx1 { NumberAnimation { duration: 100 - easing.type: Easing.OutCirc + easing.type: Easing.OutSine } } Behavior on idx2 { NumberAnimation { - duration: 500 - easing.type: Easing.OutCirc + duration: 300 + easing.type: Easing.OutSine } } }