├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── README.md ├── azure-pipelines.yml ├── docs ├── Customization │ ├── Contributing themes.md │ └── Personalization.md ├── Getting started.md ├── Hotkeys.md ├── Plugins │ ├── Authoring C# plugins.md │ ├── Contributing plugins.md │ ├── General.md │ └── Tasks.md ├── Privacy.md ├── Result preview.md ├── Screen search │ ├── Advanced usage.md │ ├── Customization.md │ ├── OCR.md │ └── Screen Search.md ├── Search apps │ ├── Browser.md │ ├── Commands.md │ ├── Files.md │ ├── Search Apps General.md │ └── Web.md ├── Search options.md ├── Search tags.md ├── System settings.md ├── docs.json └── images │ ├── BrowserHistoryDark.webp │ ├── BrowserHistoryLight.webp │ ├── CustomSearchTagDark.webp │ ├── CustomSearchTagLight.webp │ ├── FileTagDark.webp │ ├── FileTagLight.webp │ ├── GoogleWebSearchDark.webp │ ├── GoogleWebSearchLight.webp │ ├── HotkeysSettingsDark.webp │ ├── HotkeysSettingsLight.webp │ ├── MultipleTagsDark.webp │ ├── MultipleTagsLight.webp │ ├── OrderResultsDark.webp │ ├── OrderResultsLight.webp │ ├── PdfSearchTagDark.webp │ ├── PdfSearchTagLight.webp │ ├── PersonalizationSettingsDark.webp │ ├── PersonalizationSettingsLight.webp │ ├── PowerShellSearchDark.webp │ ├── PowerShellSearchLight.webp │ ├── PreviewMarkdownDark.webp │ ├── PreviewMarkdownLight.webp │ ├── PreviewModulesDark.webp │ ├── PreviewModulesLight.webp │ ├── PrioritizationSettingsDark.webp │ ├── PrioritizationSettingsLight.webp │ ├── ScreenSearchCustomizationDark.webp │ ├── ScreenSearchCustomizationLight.webp │ ├── ScreenSearchDark.webp │ ├── ScreenSearchLight.webp │ ├── SearchAppsSettingsDark.webp │ ├── SearchAppsSettingsLight.webp │ ├── SearchDark.webp │ ├── SearchGroupsLight.webp │ ├── SearchLight.webp │ ├── SearchSettingsDark.webp │ ├── SearchSettingsLight.webp │ ├── SearchTagsSettingsDark.webp │ ├── SearchTagsSettingsLight.webp │ ├── SystemSettingsDark.webp │ ├── SystemSettingsLight.webp │ ├── ThemesSettingsDark.webp │ ├── ThemesSettingsLight.webp │ ├── WebSearchTagsDark.webp │ └── WebSearchTagsLight.webp ├── fluent_search_img.png └── plugins-manifest.json /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /docs/Customization/Contributing themes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/Customization/Contributing themes.md -------------------------------------------------------------------------------- /docs/Customization/Personalization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/Customization/Personalization.md -------------------------------------------------------------------------------- /docs/Getting started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/Getting started.md -------------------------------------------------------------------------------- /docs/Hotkeys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/Hotkeys.md -------------------------------------------------------------------------------- /docs/Plugins/Authoring C# plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/Plugins/Authoring C# plugins.md -------------------------------------------------------------------------------- /docs/Plugins/Contributing plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/Plugins/Contributing plugins.md -------------------------------------------------------------------------------- /docs/Plugins/General.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/Plugins/General.md -------------------------------------------------------------------------------- /docs/Plugins/Tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/Plugins/Tasks.md -------------------------------------------------------------------------------- /docs/Privacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/Privacy.md -------------------------------------------------------------------------------- /docs/Result preview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/Result preview.md -------------------------------------------------------------------------------- /docs/Screen search/Advanced usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/Screen search/Advanced usage.md -------------------------------------------------------------------------------- /docs/Screen search/Customization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/Screen search/Customization.md -------------------------------------------------------------------------------- /docs/Screen search/OCR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/Screen search/OCR.md -------------------------------------------------------------------------------- /docs/Screen search/Screen Search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/Screen search/Screen Search.md -------------------------------------------------------------------------------- /docs/Search apps/Browser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/Search apps/Browser.md -------------------------------------------------------------------------------- /docs/Search apps/Commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/Search apps/Commands.md -------------------------------------------------------------------------------- /docs/Search apps/Files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/Search apps/Files.md -------------------------------------------------------------------------------- /docs/Search apps/Search Apps General.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/Search apps/Search Apps General.md -------------------------------------------------------------------------------- /docs/Search apps/Web.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/Search apps/Web.md -------------------------------------------------------------------------------- /docs/Search options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/Search options.md -------------------------------------------------------------------------------- /docs/Search tags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/Search tags.md -------------------------------------------------------------------------------- /docs/System settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/System settings.md -------------------------------------------------------------------------------- /docs/docs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/docs.json -------------------------------------------------------------------------------- /docs/images/BrowserHistoryDark.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/images/BrowserHistoryDark.webp -------------------------------------------------------------------------------- /docs/images/BrowserHistoryLight.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/images/BrowserHistoryLight.webp -------------------------------------------------------------------------------- /docs/images/CustomSearchTagDark.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/images/CustomSearchTagDark.webp -------------------------------------------------------------------------------- /docs/images/CustomSearchTagLight.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/images/CustomSearchTagLight.webp -------------------------------------------------------------------------------- /docs/images/FileTagDark.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/images/FileTagDark.webp -------------------------------------------------------------------------------- /docs/images/FileTagLight.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/images/FileTagLight.webp -------------------------------------------------------------------------------- /docs/images/GoogleWebSearchDark.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/images/GoogleWebSearchDark.webp -------------------------------------------------------------------------------- /docs/images/GoogleWebSearchLight.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/images/GoogleWebSearchLight.webp -------------------------------------------------------------------------------- /docs/images/HotkeysSettingsDark.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/images/HotkeysSettingsDark.webp -------------------------------------------------------------------------------- /docs/images/HotkeysSettingsLight.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/images/HotkeysSettingsLight.webp -------------------------------------------------------------------------------- /docs/images/MultipleTagsDark.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/images/MultipleTagsDark.webp -------------------------------------------------------------------------------- /docs/images/MultipleTagsLight.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/images/MultipleTagsLight.webp -------------------------------------------------------------------------------- /docs/images/OrderResultsDark.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/images/OrderResultsDark.webp -------------------------------------------------------------------------------- /docs/images/OrderResultsLight.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/images/OrderResultsLight.webp -------------------------------------------------------------------------------- /docs/images/PdfSearchTagDark.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/images/PdfSearchTagDark.webp -------------------------------------------------------------------------------- /docs/images/PdfSearchTagLight.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/images/PdfSearchTagLight.webp -------------------------------------------------------------------------------- /docs/images/PersonalizationSettingsDark.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/images/PersonalizationSettingsDark.webp -------------------------------------------------------------------------------- /docs/images/PersonalizationSettingsLight.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/images/PersonalizationSettingsLight.webp -------------------------------------------------------------------------------- /docs/images/PowerShellSearchDark.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/images/PowerShellSearchDark.webp -------------------------------------------------------------------------------- /docs/images/PowerShellSearchLight.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/images/PowerShellSearchLight.webp -------------------------------------------------------------------------------- /docs/images/PreviewMarkdownDark.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/images/PreviewMarkdownDark.webp -------------------------------------------------------------------------------- /docs/images/PreviewMarkdownLight.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/images/PreviewMarkdownLight.webp -------------------------------------------------------------------------------- /docs/images/PreviewModulesDark.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/images/PreviewModulesDark.webp -------------------------------------------------------------------------------- /docs/images/PreviewModulesLight.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/images/PreviewModulesLight.webp -------------------------------------------------------------------------------- /docs/images/PrioritizationSettingsDark.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/images/PrioritizationSettingsDark.webp -------------------------------------------------------------------------------- /docs/images/PrioritizationSettingsLight.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/images/PrioritizationSettingsLight.webp -------------------------------------------------------------------------------- /docs/images/ScreenSearchCustomizationDark.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/images/ScreenSearchCustomizationDark.webp -------------------------------------------------------------------------------- /docs/images/ScreenSearchCustomizationLight.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/images/ScreenSearchCustomizationLight.webp -------------------------------------------------------------------------------- /docs/images/ScreenSearchDark.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/images/ScreenSearchDark.webp -------------------------------------------------------------------------------- /docs/images/ScreenSearchLight.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/images/ScreenSearchLight.webp -------------------------------------------------------------------------------- /docs/images/SearchAppsSettingsDark.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/images/SearchAppsSettingsDark.webp -------------------------------------------------------------------------------- /docs/images/SearchAppsSettingsLight.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/images/SearchAppsSettingsLight.webp -------------------------------------------------------------------------------- /docs/images/SearchDark.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/images/SearchDark.webp -------------------------------------------------------------------------------- /docs/images/SearchGroupsLight.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/images/SearchGroupsLight.webp -------------------------------------------------------------------------------- /docs/images/SearchLight.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/images/SearchLight.webp -------------------------------------------------------------------------------- /docs/images/SearchSettingsDark.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/images/SearchSettingsDark.webp -------------------------------------------------------------------------------- /docs/images/SearchSettingsLight.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/images/SearchSettingsLight.webp -------------------------------------------------------------------------------- /docs/images/SearchTagsSettingsDark.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/images/SearchTagsSettingsDark.webp -------------------------------------------------------------------------------- /docs/images/SearchTagsSettingsLight.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/images/SearchTagsSettingsLight.webp -------------------------------------------------------------------------------- /docs/images/SystemSettingsDark.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/images/SystemSettingsDark.webp -------------------------------------------------------------------------------- /docs/images/SystemSettingsLight.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/images/SystemSettingsLight.webp -------------------------------------------------------------------------------- /docs/images/ThemesSettingsDark.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/images/ThemesSettingsDark.webp -------------------------------------------------------------------------------- /docs/images/ThemesSettingsLight.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/images/ThemesSettingsLight.webp -------------------------------------------------------------------------------- /docs/images/WebSearchTagsDark.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/images/WebSearchTagsDark.webp -------------------------------------------------------------------------------- /docs/images/WebSearchTagsLight.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/docs/images/WebSearchTagsLight.webp -------------------------------------------------------------------------------- /fluent_search_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/fluent_search_img.png -------------------------------------------------------------------------------- /plugins-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adirh3/Fluent-Search/HEAD/plugins-manifest.json --------------------------------------------------------------------------------