aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.org6
-rw-r--r--src/main.cpp4
2 files changed, 5 insertions, 5 deletions
diff --git a/README.org b/README.org
index c3b9649..45b54d4 100644
--- a/README.org
+++ b/README.org
@@ -1,10 +1,12 @@
* lowbat
-Very small script that runs in the background and warns you when your battery is low until you plug your laptop in. It also is POSIX-compliant, which is nice.
+Very small program that runs in the background and warns you when your battery is low until you plug your laptop in. It also is POSIX-compliant, which is nice.
** Dependencies
-- ~make~
+- ~acpi~
- ~libnotify~
- ~espeak~
+- ~make~
+- ~gcc~
** Installation
Open a terminal and run these commands:
diff --git a/src/main.cpp b/src/main.cpp
index 69d4ef5..66914ec 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -15,6 +15,7 @@ int main(int argc, const char *argv[]) {
string arg_two;
int batlvlint;
+ msg = "Beep beep - low battery";
if (argc > 1) {
arg_one = argv[1];
if (argc > 2)
@@ -24,9 +25,6 @@ int main(int argc, const char *argv[]) {
msg = arg_two;
}
}
- else {
- msg = "Beep beep - low battery";
- }
while (true) {
acstat = jo_exec("acpi | awk '{print $3}' | rev | cut -c 2- | rev");