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

import Quickshell
import QtQuick

Singleton {
    readonly property int hideDelay: 2000
    readonly property Sizes sizes: Sizes {}

    component Sizes: QtObject {
        readonly property int sliderWidth: 30
        readonly property int sliderHeight: 150
    }
}