Updated Information Widgets (markdown)

Ben Phelps
2022-09-04 14:31:50 +03:00
parent 08a577db8f
commit 70a7af44a6

@@ -77,3 +77,23 @@ The free tier "One Call API" is all thats required, you will need to [subscribe]
apiKey: youropenweathermapkey apiKey: youropenweathermapkey
cache: 5 # Time in minutes to cache API responses, to stay within limits cache: 5 # Time in minutes to cache API responses, to stay within limits
``` ```
## Search
You can add a search bar to your top widget area that can search using Google, Duckduckgo, Bing or any other custom provider that supports the basic `?q=` search query param.
```yaml
- search:
provider: google # google, duckduckgo, bing or custom
target: _blank
```
or for a custom search:
```yaml
- search:
provider: custom
url: https://lougle.com/?q=
target: _blank
```