summaryrefslogtreecommitdiff
path: root/config/SessionConfig.qml
blob: c72d2f19686a4094123ab0ab84f13ff0bbf2ee5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
pragma Singleton

import Quickshell
import QtQuick

Singleton {
    readonly property int dragThreshold: 30
    readonly property Sizes sizes: Sizes {}

    component Sizes: QtObject {
        readonly property int button: 80
    }
}