summaryrefslogtreecommitdiff
path: root/services/Popouts.qml
blob: b7ef5f85d70bb3501024b6e2644d25debab320c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
pragma Singleton

import "root:/config"
import Quickshell
import QtQuick

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
        }
    }
}