From 0c70b6b235a488541221f679586e6a09e1c51ae5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Jim=C3=A9nez?= Date: Fri, 21 Oct 2022 03:28:36 +0200 Subject: [PATCH] chore: add cerebro-search as default plugin (#613) * chore: add cerebro search as default plugin * docs: update docs --- README.md | 8 ++++---- app/plugins/core/plugins/initializeAsync.js | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 118f9419..486dec7c 100644 --- a/README.md +++ b/README.md @@ -19,10 +19,10 @@ After installation use the default shortcut `ctrl+space` to show the app window. ### Core plugins -- Search in the web with google suggestions; -- Search & launch application, i.e. `spotify`; -- Navigate in file system with file previews (i.e. `~/Dropbox/passport.pdf`); -- Calculator; +- Search in the web with your favourite search engine +- Search & launch application, i.e. `spotify` +- Navigate in file system with file previews (i.e. `~/Dropbox/passport.pdf`) +- Calculator - Smart converter. `15$`, `150 рублей в евро`, `100 eur in gbp`; ### Install plugins diff --git a/app/plugins/core/plugins/initializeAsync.js b/app/plugins/core/plugins/initializeAsync.js index 27d69654..47969814 100644 --- a/app/plugins/core/plugins/initializeAsync.js +++ b/app/plugins/core/plugins/initializeAsync.js @@ -8,7 +8,7 @@ import getInstalledPlugins from './getInstalledPlugins' const DEFAULT_PLUGINS = [ process.platform === 'darwin' ? 'cerebro-mac-apps' : '@cerebroapp/cerebro-basic-apps', - 'cerebro-google', + '@cerebroapp/search', 'cerebro-math', 'cerebro-converter', 'cerebro-open-web',