[Linux] Add autostart setting

This commit is contained in:
Tim Gromeyer
2025-04-21 12:47:15 +02:00
committed by Tim Gromeyer
parent 1c7bdf987c
commit ec1b0c47ca
4 changed files with 119 additions and 10 deletions

View File

@@ -127,6 +127,7 @@ ApplicationWindow {
}
Switch {
visible: airPodsTrayApp.airpodsConnected
text: "Conversational Awareness"
checked: airPodsTrayApp.conversationalAwareness
onCheckedChanged: airPodsTrayApp.conversationalAwareness = checked
@@ -187,6 +188,12 @@ ApplicationWindow {
}
}
Switch {
text: "Auto-Start on Login"
checked: airPodsTrayApp.autoStartManager.autoStartEnabled
onCheckedChanged: airPodsTrayApp.autoStartManager.autoStartEnabled = checked
}
Row {
spacing: 10