* Added toast notifications for audio device changes * rename to toasts * moved into audio service * fixes --------- Co-authored-by: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>
18 lines
381 B
QML
18 lines
381 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 audioOutputChanged: true
|
|
property bool audioInputChanged: true
|
|
}
|
|
}
|