summaryrefslogtreecommitdiff
path: root/services
diff options
context:
space:
mode:
Diffstat (limited to 'services')
-rw-r--r--services/Popouts.qml9
1 files changed, 9 insertions, 0 deletions
diff --git a/services/Popouts.qml b/services/Popouts.qml
index fa5b2d6..b7ef5f8 100644
--- a/services/Popouts.qml
+++ b/services/Popouts.qml
@@ -1,5 +1,6 @@
pragma Singleton
+import "root:/config"
import Quickshell
import QtQuick
@@ -7,4 +8,12 @@ Singleton {
property string currentName
property real currentCenter
property bool hasCurrent
+
+ Behavior on currentCenter {
+ NumberAnimation {
+ duration: Appearance.anim.durations.normal
+ easing.type: Easing.BezierSpline
+ easing.bezierCurve: Appearance.anim.curves.emphasized
+ }
+ }
}