1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-10 18:10:56 +09:00

Browser: Add option to open BrowserSettings from Browser :^)

This commit is contained in:
Maciej 2022-01-31 21:55:26 +01:00 committed by Andreas Kling
parent 1606f70f0c
commit 8aa1c7f5b0
Notes: sideshowbarker 2024-07-17 18:34:55 +09:00
2 changed files with 11 additions and 2 deletions

View file

@ -57,7 +57,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
return 1;
}
TRY(Core::System::pledge("stdio recvfd sendfd unix cpath rpath wpath"));
TRY(Core::System::pledge("stdio recvfd sendfd unix cpath rpath wpath proc exec"));
const char* specified_url = nullptr;
@ -83,6 +83,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
TRY(Core::System::unveil("/tmp/portal/image", "rw"));
TRY(Core::System::unveil("/tmp/portal/webcontent", "rw"));
TRY(Core::System::unveil("/tmp/portal/request", "rw"));
TRY(Core::System::unveil("/bin/BrowserSettings", "x"));
TRY(Core::System::unveil(nullptr, nullptr));
auto app_icon = GUI::Icon::default_icon("app-browser");