diff --git a/Applications/SystemMonitor/main.cpp b/Applications/SystemMonitor/main.cpp index 8a551a0567..726788a2fd 100644 --- a/Applications/SystemMonitor/main.cpp +++ b/Applications/SystemMonitor/main.cpp @@ -103,6 +103,11 @@ int main(int argc, char** argv) return 1; } + if (unveil("/dev", "r") < 0) { + perror("unveil"); + return 1; + } + unveil(nullptr, nullptr); auto window = GWindow::construct();