mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 15:47:34 +00:00
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.
This commit is contained in:
parent
d16db6a67c
commit
66c13edb98
9 changed files with 625 additions and 0 deletions
14
Userland/Applications/Assistant/CMakeLists.txt
Normal file
14
Userland/Applications/Assistant/CMakeLists.txt
Normal file
|
@ -0,0 +1,14 @@
|
|||
serenity_component(
|
||||
Assistant
|
||||
RECOMMENDED
|
||||
TARGETS Assistant
|
||||
)
|
||||
|
||||
set(SOURCES
|
||||
Providers.cpp
|
||||
FuzzyMatch.cpp
|
||||
main.cpp
|
||||
)
|
||||
|
||||
serenity_app(Assistant ICON app-run)
|
||||
target_link_libraries(Assistant LibCore LibDesktop LibGUI LibJS LibThreading)
|
Loading…
Add table
Add a link
Reference in a new issue