1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:07:47 +00:00

WindowServer: Move configuration file to /etc/WindowServer.ini

This was in the /etc/WindowServer/ directory which had nothing else in
it, so let's just get rid of the directory and move this up one step.
This commit is contained in:
Andreas Kling 2021-04-29 21:40:59 +02:00
parent b88b19272e
commit def1f1444a
9 changed files with 13 additions and 13 deletions

View file

@ -74,7 +74,7 @@ The `unveil()` system call was first introduced by OpenBSD.
unveil("/res", "r");
// Allow the process to read, write, and create the config file:
unveil("/etc/WindowServer/WindowServer.ini", "rwc");
unveil("/etc/WindowServer.ini", "rwc");
// Allow the process to execute Calendar:
unveil("/bin/Calendar", "x");