diff options
Diffstat (limited to 'libLumina/LuminaOS-template.cpp')
-rw-r--r-- | libLumina/LuminaOS-template.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/libLumina/LuminaOS-template.cpp b/libLumina/LuminaOS-template.cpp index 298f9ddd..ec547d1d 100644 --- a/libLumina/LuminaOS-template.cpp +++ b/libLumina/LuminaOS-template.cpp @@ -70,7 +70,12 @@ void LOS::startMixerUtility(){ bool LOS::userHasShutdownAccess(){ return false; //not implemented yet } - + +//Check for whether the system is safe to power off (no updates being perfomed) +bool LOS::systemPerformingUpdates(){ + return false; //Not implemented yet +} + //System Shutdown void LOS::systemShutdown(){ //start poweroff sequence QProcess::startDetached("shutdown -p now"); |