aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-desktop/Globals.h
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2020-04-24 17:50:05 -0400
committerKen Moore <moorekou@gmail.com>2020-04-24 17:50:05 -0400
commit297bf0a1bd4c38dff059d3aa131426d4337f3af1 (patch)
treeef666f3fa94db3107729c04f1c4c17852b1d5837 /src-qt5/core/lumina-desktop/Globals.h
parentUpdate some syntax highlighting handling. (diff)
downloadlumina-297bf0a1bd4c38dff059d3aa131426d4337f3af1.tar.gz
lumina-297bf0a1bd4c38dff059d3aa131426d4337f3af1.tar.bz2
lumina-297bf0a1bd4c38dff059d3aa131426d4337f3af1.zip
Disable xscreensaver from auto-start.
Enable lumina-checkpass
Diffstat (limited to 'src-qt5/core/lumina-desktop/Globals.h')
-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