diff options
author | Lucas CHOLLET <lucas.chollet@free.fr> | 2022-07-24 15:56:44 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-08-14 21:52:35 +0100 |
commit | 4f87f03bd1dd51774d89ec5a5a9bb064c025a0d6 (patch) | |
tree | dd4c30d3ac5748f2bf5dd467ad66cc7695f3c619 /Userland/Utilities | |
parent | c248569d6b42083cf39618adf5d38ad772a216e9 (diff) | |
download | serenity-4f87f03bd1dd51774d89ec5a5a9bb064c025a0d6.zip |
Base: Launch AudioServer at session start-up
Diffstat (limited to 'Userland/Utilities')
-rw-r--r-- | Userland/Utilities/aplay.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Utilities/aplay.cpp b/Userland/Utilities/aplay.cpp index cbf97462cc..b8e1a9f537 100644 --- a/Userland/Utilities/aplay.cpp +++ b/Userland/Utilities/aplay.cpp @@ -35,7 +35,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments) args_parser.parse(arguments); TRY(Core::System::unveil(Core::File::absolute_path(path), "r"sv)); - TRY(Core::System::unveil("/tmp/portal/audio", "rw")); + TRY(Core::System::unveil("/tmp/user/%uid/portal/audio", "rw")); TRY(Core::System::unveil(nullptr, nullptr)); Core::EventLoop loop; |