aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--src/main.cpp8
2 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index a6e035a..6fae817 100644
--- a/Makefile
+++ b/Makefile
@@ -61,7 +61,7 @@ ${OBJS_DIR}%.o: ${SRCS_DIR}%.cpp ${INCS_DIR}${INCS}
${CC} ${CFLAGS} -I${INCS_DIR} -c -o $@ $<
#------------------------------------------------------------------------------#
${NAME}: ${OBJS}
- @${MKDIR} ${TRGT_DIR}
+ ${MKDIR} ${TRGT_DIR}
${CC} ${CFLAGS} -o ${TRGT_DIR}${NAME} ${OBJS}
#------------------------------------------------------------------------------#
all: ${NAME}
diff --git a/src/main.cpp b/src/main.cpp
index 66914ec..46f875c 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -15,13 +15,13 @@ int main(int argc, const char *argv[]) {
string arg_two;
int batlvlint;
- msg = "Beep beep - low battery";
+ msg = "beep beep - low battery";
if (argc > 1) {
arg_one = argv[1];
if (argc > 2)
{
arg_two = argv[2];
- if (!memcmp(arg_one.c_str(), "--say", strlen("--say")))
+ if (!strcmp(arg_one.c_str(), "--say"))
msg = arg_two;
}
}
@@ -33,9 +33,9 @@ int main(int argc, const char *argv[]) {
batlvl.erase(remove(batlvl.begin(), batlvl.end(), '\n'), batlvl.end());
batlvlint = stoi(batlvl);
if (batlvlint < 90) {
- while (!memcmp(acstat.c_str(), "Discharging", strlen("Discharging"))) {
+ while (!strcmp(acstat.c_str(), "Discharging")) {
jo_notify(batlvl);
- if (memcmp(arg_one.c_str(), "--silent", strlen("--silent")))
+ if (strcmp(arg_one.c_str(), "--silent"))
jo_speak(msg);
sleep_for(seconds(20));
acstat = jo_exec("acpi | awk '{print $3}' | rev | cut -c 2- | rev");