summaryrefslogtreecommitdiff
path: root/Userland/open.cpp
AgeCommit message (Collapse)Author
2020-10-20Userland: Use new format functions in some programsAndreas Kling
2020-08-08open: Resolve the realpath before passing it to URL()AnotherTest
...which runs it through LexicalPath. Fixes #3016.
2020-05-14open: Create a Core::EventLoop before using Desktop::LauncherAndreas Kling
We can't talk to IPC servers without having an event loop.
2020-05-14Build: Switch to CMake :^)Sergey Bugaev
Closes https://github.com/SerenityOS/serenity/issues/2080
2020-05-10Userland: Send absolute paths to LaunchServer and show what failedAnotherTest
2020-05-09LibDesktop: Switch to LaunchServer for DesktopServices::openNicholas Hollett
Moves DirectoryServices out of LibCore (because we need to link with LibIPC), renames it Desktop::Launcher (because Desktop::DesktopServices doesn't scan right) and ports it to use the LaunchServer which is now responsible for starting programs for a file.
2020-04-19Userland: Add open(1)Sergey Bugaev
This is a simple utility for invoking Core::DesktopServices::open() from command line :^)