summaryrefslogtreecommitdiff
path: root/config.go
diff options
context:
space:
mode:
Diffstat (limited to 'config.go')
-rw-r--r--config.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/config.go b/config.go
index 9464291..ec4f8ec 100644
--- a/config.go
+++ b/config.go
@@ -10,7 +10,9 @@ import (
// Config contains all configuration options that are read from .config/startpage/config.json
type Config struct {
// The place for which to get the weather data. If omitted, no weather will be shown
- WeatherPlace string
+ WeatherCoords struct {
+ Lat, Lon string
+ }
// A list of links to show
Links []Link