Create Microphone widget as requested in #180

Microphone: hook up microphone functionallity to bar widget
This commit is contained in:
Ly-sec 2025-09-01 14:22:45 +02:00
parent 00c94755c5
commit 0fd83498ea
3 changed files with 137 additions and 0 deletions

View file

@ -18,6 +18,7 @@ Singleton {
"Clock": clockComponent,
"KeyboardLayout": keyboardLayoutComponent,
"MediaMini": mediaMiniComponent,
"Microphone": microphoneComponent,
"NightLight": nightLightComponent,
"NotificationHistory": notificationHistoryComponent,
"PowerProfile": powerProfileComponent,
@ -56,6 +57,9 @@ Singleton {
property Component mediaMiniComponent: Component {
MediaMini {}
}
property Component microphoneComponent: Component {
Microphone {}
}
property Component nightLightComponent: Component {
NightLight {}
}