Created
October 2, 2019 05:27
-
-
Save p5150j/c11752f56863b49e20fd49b3b6ee04db to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
modules: [{ | |
{ | |
module: "clock", | |
position: "top_left" | |
}, | |
{ | |
module: "calendar", | |
header: "Radar Cal", | |
position: "top_left", | |
config: { | |
calendars: [{ | |
symbol: "calendar-check", | |
nextDaysRelative: 'true', | |
url: "https://calendar.google.com/calendar/ical/......." | |
}] | |
} | |
}, | |
{ | |
module: "compliments", | |
position: "lower_third" | |
}, | |
{ | |
module: "weather", | |
position: "top_right", | |
config: { | |
weatherProvider: 'openweathermap', | |
type: 'forecast', | |
apiKey: '3007cc2b9d481a856ba4a85a14c69f24', | |
fade: 'false', | |
location: 'Fort Collins,Colorado', | |
weatherEndpoint: '/forecast' | |
} | |
}, | |
{ | |
module: "newsfeed", | |
position: "bottom_bar", | |
config: { | |
feeds: [{ | |
title: "ycombinator", | |
url: "https://news.ycombinator.com/rss" | |
}], | |
showSourceTitle: true, | |
showPublishDate: true, | |
broadcastNewsFeeds: true, | |
broadcastNewsUpdates: true | |
} | |
}, | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment