diff options
author | Spencer Dixon <spencercdixon@gmail.com> | 2021-06-16 21:55:44 -0400 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-06-28 16:29:02 +0200 |
commit | 66c13edb984ca811e1d38713748b282afb561bbf (patch) | |
tree | 2ec12a107547ef6eb38ade0cc48e47c05470f19a /Userland/Libraries/LibDesktop/AppFile.cpp | |
parent | d16db6a67c5a758cf28a91e8d3886032acb385c4 (diff) | |
download | serenity-66c13edb984ca811e1d38713748b282afb561bbf.zip |
Userland: Add new app called Assistant
'Assistant' is similar to macOS spotlight where you can quickly open a
text input, start typing, and hit 'enter' to launch apps or open
directories.
Diffstat (limited to 'Userland/Libraries/LibDesktop/AppFile.cpp')
-rw-r--r-- | Userland/Libraries/LibDesktop/AppFile.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Userland/Libraries/LibDesktop/AppFile.cpp b/Userland/Libraries/LibDesktop/AppFile.cpp index dee54d7631..e5f901284c 100644 --- a/Userland/Libraries/LibDesktop/AppFile.cpp +++ b/Userland/Libraries/LibDesktop/AppFile.cpp @@ -9,6 +9,9 @@ #include <LibCore/ConfigFile.h> #include <LibCore/DirIterator.h> #include <LibDesktop/AppFile.h> +#include <errno.h> +#include <serenity.h> +#include <spawn.h> namespace Desktop { |