nosignal-shell/config/UtilitiesConfig.qml
2025-09-23 18:10:32 +10:00

22 lines
549 B
QML

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 configLoaded: true
property bool chargingChanged: true
property bool gameModeChanged: true
property bool dndChanged: true
property bool audioOutputChanged: true
property bool audioInputChanged: true
}
}