diff --git a/src/plasma/contents/ui/main.qml b/src/plasma/contents/ui/main.qml --- a/src/plasma/contents/ui/main.qml +++ b/src/plasma/contents/ui/main.qml @@ -94,5 +94,10 @@ onIsOnBatteryChanged: timer.restart() } - Component.onCompleted: timer.start() + Component.onCompleted: { + if(!needsForcedUpdate() && batteryAllowed) { + PkUpdates.checkUpdates(false); + } + timer.start() + } }