summaryrefslogtreecommitdiff
path: root/weather-widget/README.md
diff options
context:
space:
mode:
authorstreetturtle <streetturtle@gmail.com>2020-10-19 23:15:48 -0400
committerstreetturtle <streetturtle@gmail.com>2020-10-19 23:16:28 -0400
commitf00c2454f4cb0858c394879e5a5b44f0af3846ec (patch)
tree3e9ee2a4f998ecf53606bb0ca9a6acfcf4ab5878 /weather-widget/README.md
parent6de58c770027a2ed5feea84131db5db41e6d20a3 (diff)
[weather] fix #176 - support negative temp
Diffstat (limited to 'weather-widget/README.md')
-rw-r--r--weather-widget/README.md15
1 files changed, 11 insertions, 4 deletions
diff --git a/weather-widget/README.md b/weather-widget/README.md
index e573bd4..2b43d3a 100644
--- a/weather-widget/README.md
+++ b/weather-widget/README.md
@@ -47,7 +47,7 @@ To add your custom icons, create a folder with the pack name under `/icons` and
#### Custom font, icons
-![example1](./screenshots/example1.png)
+![example1](./example1.png)
```lua
weather_curl_widget({
@@ -65,7 +65,7 @@ weather_curl_widget({
#### Only current weather
-![example2](./screenshots/example2.png)
+![example2](./example2.png)
```lua
weather_curl_widget({
@@ -74,8 +74,6 @@ weather_curl_widget({
}),
```
-
-
## Installation
1. Download json parser for lua from [github.com/rxi/json.lua](https://github.com/rxi/json.lua) and place it under **~/.config/awesome/** (don't forget to star a repo <i class="fa fa-github-alt"></i> ):
@@ -126,6 +124,15 @@ weather_curl_widget({
...
```
+## More screenshots
+
+Only negative temperature:
+
+![negative](./negative.png)
+
+Both positive and negative tempertature:
+
+![both](./both.png)
## How it works