aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-desktop
diff options
context:
space:
mode:
Diffstat (limited to 'src-qt5/core/lumina-desktop')
-rw-r--r--src-qt5/core/lumina-desktop/Globals.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/src-qt5/core/lumina-desktop/Globals.h b/src-qt5/core/lumina-desktop/Globals.h
index f7821466..109731d2 100644
--- a/src-qt5/core/lumina-desktop/Globals.h
+++ b/src-qt5/core/lumina-desktop/Globals.h
@@ -45,37 +45,6 @@ public:
}
return QString::fromLocal8Bit(name,count);
}
- /*//Shutdown the system
-#ifdef __linux
- static void shutdown(){ system("(shutdown -h now) &"); }
-#else // #ifdef __linux
- static void shutdown(){ system("(shutdown -p now) &"); }
-#endif // #ifdef __linux
- //Restart the system
- static void restart(){ system("(shutdown -r now) &"); }
-
- //Determine if there is battery support
- static bool hasBattery(){
- int val = LUtils::getCmdOutput("apm -l").join("").toInt();
- return (val >= 0 && val <= 100);
- }
-
- //Get the current battery charge percentage
- static int batteryCharge(){
- int charge = LUtils::getCmdOutput("apm -l").join("").toInt();
- if(charge > 100){ charge = -1; } //invalid charge
- return charge;
- }
-
- //Get the current battery charge percentage
- static bool batteryIsCharging(){
- return (LUtils::getCmdOutput("apm -a").join("").simplified() == "1");
- }
-
- //Get the amount of time remaining for the battery
- static int batterySecondsLeft(){
- return LUtils::getCmdOutput("apm -t").join("").toInt();
- }*/
};
#endif
bgstack15