fixed two minor oversights

This commit is contained in:
EinTim23 2024-11-06 13:15:58 +01:00
parent 12f5239900
commit bde0e2f057
2 changed files with 3 additions and 1 deletions

View File

@ -103,7 +103,7 @@ bool backend::toggleAutostart(bool enabled) {
bool backend::init() { bool backend::init() {
hideDockIcon(true); hideDockIcon(true);
return false; return true;
} }
#undef LAUNCH_AGENT_TEMPLATE #undef LAUNCH_AGENT_TEMPLATE

View File

@ -4,6 +4,8 @@
#include <filesystem> #include <filesystem>
#include <fstream> #include <fstream>
#include <iostream> #include <iostream>
#include <limits.h>
#include <unistd.h>
#include "../backend.hpp" #include "../backend.hpp"