nosignal-shell/config/UtilitiesConfig.qml
Robin Seger bef5359702
audio: audio device changed toasts (#684)
* 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>
2025-09-23 18:04:21 +10:00

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
}
}