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

Terminal+LibVT: Use GUI::FileIconProvider for app icons

This commit is contained in:
Linus Groh 2020-12-24 16:10:33 +01:00 committed by Andreas Kling
parent bcecd2fa2f
commit b53011a198
2 changed files with 10 additions and 4 deletions

View file

@ -419,6 +419,11 @@ int main(int argc, char** argv)
return 1;
}
if (unveil("/bin", "r") < 0) {
perror("unveil");
return 1;
}
if (unveil("/bin/Terminal", "x") < 0) {
perror("unveil");
return 1;