diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2019-12-04 00:23:45 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2019-12-04 00:23:45 +0100 |
commit | 86f4eeac510753024dd94b69988bed700446ef37 (patch) | |
tree | e2fddd65127ad0eeef58f5eb4e5c5c57cd23ae39 /src/jo_notify.cpp | |
parent | .gitignore C++ update, doing some debug (diff) | |
download | lowbat-gnu-86f4eeac510753024dd94b69988bed700446ef37.tar.gz lowbat-gnu-86f4eeac510753024dd94b69988bed700446ef37.tar.bz2 lowbat-gnu-86f4eeac510753024dd94b69988bed700446ef37.tar.xz lowbat-gnu-86f4eeac510753024dd94b69988bed700446ef37.tar.zst lowbat-gnu-86f4eeac510753024dd94b69988bed700446ef37.zip |
Better now
Diffstat (limited to 'src/jo_notify.cpp')
-rw-r--r-- | src/jo_notify.cpp | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/src/jo_notify.cpp b/src/jo_notify.cpp index bd14db0..154b0b7 100644 --- a/src/jo_notify.cpp +++ b/src/jo_notify.cpp @@ -2,25 +2,21 @@ int jo_notify(const string batlvl) { - string str = nullptr; - const char *cmd = nullptr; + string str; str = "notify-send \""; str += batlvl; str += "%\" \"Please plug in computer\" -u critical -t 15000"; - cmd = str.c_str(); - return system(cmd); + return system(str.c_str()); } int jo_speak(const string msg) { - string str = nullptr; - const char *cmd = nullptr; + string str; str = "echo \""; str += msg; str += "\" | espeak"; - cmd = str.c_str(); - return system(cmd); + return system(str.c_str()); } |