1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-24 21:42:51 -05:00

audio: add IPC & OSD for changing output audio device

fixes #754
This commit is contained in:
bbedward
2025-12-03 20:47:57 -05:00
parent 62bd6e41ef
commit 6c7776a9a6
7 changed files with 132 additions and 0 deletions

View File

@@ -141,6 +141,13 @@ Item {
checked: SettingsData.osdPowerProfileEnabled
onToggled: checked => SettingsData.set("osdPowerProfileEnabled", checked)
}
SettingsToggleRow {
text: I18n.tr("Audio Output Switch")
description: I18n.tr("Show on-screen display when cycling audio output devices")
checked: SettingsData.osdAudioOutputEnabled
onToggled: checked => SettingsData.set("osdAudioOutputEnabled", checked)
}
}
}
}