summaryrefslogtreecommitdiff
path: root/services/Popouts.qml
blob: fdd14804c0bc9b030255e0a5dd0d5a2eabcf1763 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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
        }
    }
}