diff options
author | Maciej <sppmacd@pm.me> | 2022-10-29 21:52:20 +0200 |
---|---|---|
committer | Sam Atkins <atkinssj@gmail.com> | 2022-11-02 12:00:26 +0000 |
commit | c90024fbabf0ef568ab7b5c8867f764b02b3d145 (patch) | |
tree | 5b3194e4381f1456d71f910d03bbe91b3b4b301a /Userland/Applications/SystemMonitor/main.cpp | |
parent | 38fb3257c8ffdf11ca2ce7a8f949af7a3f79df9c (diff) | |
download | serenity-c90024fbabf0ef568ab7b5c8867f764b02b3d145.zip |
SystemMonitor: Add context menu for opening adapter in NetworkSettings
Diffstat (limited to 'Userland/Applications/SystemMonitor/main.cpp')
-rw-r--r-- | Userland/Applications/SystemMonitor/main.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Applications/SystemMonitor/main.cpp b/Userland/Applications/SystemMonitor/main.cpp index 49c5c3af6d..5a9cde793e 100644 --- a/Userland/Applications/SystemMonitor/main.cpp +++ b/Userland/Applications/SystemMonitor/main.cpp @@ -246,6 +246,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments) TRY(Core::System::unveil("/sys/kernel", "r")); TRY(Core::System::unveil("/dev", "r")); TRY(Core::System::unveil("/bin", "r")); + TRY(Core::System::unveil("/bin/Escalator", "x")); TRY(Core::System::unveil("/usr/lib", "r")); // This directory only exists if ports are installed |