summaryrefslogtreecommitdiff
path: root/Userland/Libraries
diff options
context:
space:
mode:
authorSpencer Dixon <spencercdixon@gmail.com>2021-06-16 21:55:44 -0400
committerAndreas Kling <kling@serenityos.org>2021-06-28 16:29:02 +0200
commit66c13edb984ca811e1d38713748b282afb561bbf (patch)
tree2ec12a107547ef6eb38ade0cc48e47c05470f19a /Userland/Libraries
parentd16db6a67c5a758cf28a91e8d3886032acb385c4 (diff)
downloadserenity-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')
-rw-r--r--Userland/Libraries/LibDesktop/AppFile.cpp3
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 {