summaryrefslogtreecommitdiff
path: root/config/OsdConfig.qml
blob: 543fc41e56dac1b3fd35b54dba9d20ae58fe3c7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import Quickshell.Io

JsonObject {
    property bool enabled: true
    property int hideDelay: 2000
    property bool enableBrightness: true
    property bool enableMicrophone: false
    property Sizes sizes: Sizes {}

    component Sizes: JsonObject {
        property int sliderWidth: 30
        property int sliderHeight: 150
    }
}