summaryrefslogtreecommitdiff
path: root/services/Popouts.qml
diff options
context:
space:
mode:
Diffstat (limited to 'services/Popouts.qml')
-rw-r--r--services/Popouts.qml23
1 files changed, 0 insertions, 23 deletions
diff --git a/services/Popouts.qml b/services/Popouts.qml
deleted file mode 100644
index fdd1480..0000000
--- a/services/Popouts.qml
+++ /dev/null
@@ -1,23 +0,0 @@
-pragma Singleton
-
-import "root:/config"
-import Quickshell
-import QtQuick
-
-Singleton {
- id: root
-
- property string currentName
- property real currentCenter
- property bool hasCurrent
-
- Behavior on currentCenter {
- enabled: root.hasCurrent
-
- NumberAnimation {
- duration: Appearance.anim.durations.normal
- easing.type: Easing.BezierSpline
- easing.bezierCurve: Appearance.anim.curves.emphasized
- }
- }
-}