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

Terminal+LibVT: Use GUI::AppFile

This commit is contained in:
Linus Groh 2020-12-27 19:13:57 +01:00 committed by Andreas Kling
parent 6f95a6ca27
commit ddeb261bc2
2 changed files with 10 additions and 6 deletions

View file

@ -434,6 +434,11 @@ int main(int argc, char** argv)
return 1;
}
if (unveil("/etc/FileIconProvider.ini", "r") < 0) {
perror("unveil");
return 1;
}
if (unveil("/tmp/portal/launch", "rw") < 0) {
perror("unveil");
return 1;