summaryrefslogtreecommitdiff
path: root/config/UtilitiesConfig.qml
blob: c1bad2a3bf93e4a4ac2c3f09d6eb7165bc062c2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import Quickshell.Io

JsonObject {
    property bool enabled: true
    property int maxToasts: 4

    property Sizes sizes: Sizes {}
    property Toasts toasts: Toasts {}

    component Sizes: JsonObject {
        property int width: 430
    }

    component Toasts: JsonObject {
        property bool audioOutputChanged: true
        property bool audioInputChanged: true
    }
}