aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs
diff options
context:
space:
mode:
authorDick Wolff <dckwlff@gmail.com>2021-01-13 21:25:07 +0100
committerDick Wolff <dckwlff@gmail.com>2021-01-13 21:25:07 +0100
commitdfb0b14626ccf42784d5e4c270ea0e2253db724c (patch)
tree8fa2b3c50d34dcd2eb33b9b500750443733b1bf0 /docs
parentfd12de9ebd7a75ca2f31e8b28bd2c5ac10c46e21 (diff)
downloadhomer-dfb0b14626ccf42784d5e4c270ea0e2253db724c.tar.gz
homer-dfb0b14626ccf42784d5e4c270ea0e2253db724c.tar.zst
homer-dfb0b14626ccf42784d5e4c270ea0e2253db724c.zip
Fixed some typo's.
Diffstat (limited to 'docs')
-rw-r--r--docs/configuration.md2
-rw-r--r--docs/customservices.md16
2 files changed, 9 insertions, 9 deletions
diff --git a/docs/configuration.md b/docs/configuration.md
index 6c6a444..174da4f 100644
--- a/docs/configuration.md
+++ b/docs/configuration.md
@@ -118,7 +118,7 @@ services:
118 # background: red # optional color for card to set color directly without custom stylesheet 118 # background: red # optional color for card to set color directly without custom stylesheet
119``` 119```
120 120
121View the (Custom Services)[customservices.md] file for details about all available custom services (like PiHole). 121View the [Custom Services](customservices.md) file for details about all available custom services (like PiHole).
122 122
123If you choose to fetch message information from an endpoint, the output format should be: 123If you choose to fetch message information from an endpoint, the output format should be:
124 124
diff --git a/docs/customservices.md b/docs/customservices.md
index 42bd87d..7c1818e 100644
--- a/docs/customservices.md
+++ b/docs/customservices.md
@@ -1,4 +1,4 @@
1# Tips & Tricks 1# Custom Services
2 2
3Here is an overview of all custom services that are avaiable within Homer. 3Here is an overview of all custom services that are avaiable within Homer.
4 4
@@ -25,11 +25,11 @@ The following configuration is available for the OpenWeatherMap service
25 25
26``` 26```
27items: 27items:
28 - name: "Weather" 28 - name: "Weather"
29 url: "https://api.openweathermap.org/data/2.5/weather" 29 url: "https://api.openweathermap.org/data/2.5/weather"
30 location: "Amsterdam" # your location. 30 location: "Amsterdam" # your location.
31 apiKey: "<---insert-api-key-here--->" # insert your own API key here. Request one from https://openweathermap.org/api. 31 apiKey: "<---insert-api-key-here--->" # insert your own API key here. Request one from https://openweathermap.org/api.
32 units: "metric" # units to display temperature. Can be one of: metric, imperial, kelvin. Defaults to kelvin. 32 units: "metric" # units to display temperature. Can be one of: metric, imperial, kelvin. Defaults to kelvin.
33 background: "square" choose which type of background you want behind the image. Can be one of: square, cicle, none. Defaults to none. 33 background: "square" choose which type of background you want behind the image. Can be one of: square, cicle, none. Defaults to none.
34 type: "OpenWeather" 34 type: "OpenWeather"
35``` 35```