ArchUpdater: fixed CPU hogging

This commit is contained in:
LemmyCook 2025-08-25 13:44:23 -04:00
parent 7a849806fb
commit b19fb316d9
3 changed files with 16 additions and 26 deletions

View file

@ -10,8 +10,8 @@ Singleton {
// Widget registry object mapping widget names to components
property var widgets: ({
"ActiveWindow": activeWindowComponent,
"Battery"// "ArchUpdater": archUpdaterComponent,
: batteryComponent,
"ArchUpdater": archUpdaterComponent,
"Battery": batteryComponent,
"Bluetooth": bluetoothComponent,
"Brightness": brightnessComponent,
"Clock": clockComponent,
@ -32,9 +32,9 @@ Singleton {
property Component activeWindowComponent: Component {
ActiveWindow {}
}
// property Component archUpdaterComponent: Component {
// ArchUpdater {}
// }
property Component archUpdaterComponent: Component {
ArchUpdater {}
}
property Component batteryComponent: Component {
Battery {}
}