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

WindowServer: Add "[user]" to titlebar when uid differs from login user

This commit is contained in:
meiskam 2022-11-02 23:18:59 -04:00 committed by Andrew Kaster
parent 7237be763f
commit 8768417b1c
3 changed files with 32 additions and 1 deletions

View file

@ -32,6 +32,8 @@ ErrorOr<int> serenity_main(Main::Arguments)
TRY(Core::System::unveil("/dev/input/", "rw"));
TRY(Core::System::unveil("/bin/keymap", "x"));
TRY(Core::System::unveil("/sys/kernel/keymap", "r"));
TRY(Core::System::unveil("/sys/kernel/processes", "r"));
TRY(Core::System::unveil("/etc/passwd", "r"));
struct sigaction act = {};
act.sa_flags = SA_NOCLDWAIT;
@ -65,7 +67,7 @@ ErrorOr<int> serenity_main(Main::Arguments)
WindowServer::EventLoop loop;
TRY(Core::System::pledge("stdio video thread sendfd recvfd accept rpath wpath cpath proc exec"));
TRY(Core::System::pledge("stdio video thread sendfd recvfd accept rpath wpath cpath unix proc exec"));
// First check which screens are explicitly configured
{