diff --git a/config/pages/home.yml b/config/pages/home.yml index 53f13c5..7a064a4 100644 --- a/config/pages/home.yml +++ b/config/pages/home.yml @@ -12,3 +12,10 @@ - size: full widgets: - $include: ../widgets/search.yml + - size: small + widgets: + - $include: ../widgets/clock.yml + - $include: ../widgets/calendar.yml + - $include: ../widgets/weather-quito.yml + - $include: ../widgets/weather-seoul.yml + - $include: ../widgets/releases-followed.yml diff --git a/config/widgets/calendar.yml b/config/widgets/calendar.yml new file mode 100644 index 0000000..f8fb46d --- /dev/null +++ b/config/widgets/calendar.yml @@ -0,0 +1,3 @@ +- type: calendar + title: 📅 Calendar + first-day-of-week: monday diff --git a/config/widgets/clock.yml b/config/widgets/clock.yml new file mode 100644 index 0000000..6de6f25 --- /dev/null +++ b/config/widgets/clock.yml @@ -0,0 +1,12 @@ +- type: clock + title: ⏰ Clock + hour-format: 12h + timezones: + - timezone: America/Los_Angeles + label: Los Angeles + - timezone: America/New_York + label: New York + - timezone: Europe/Paris + label: Paris + - timezone: Asia/Seoul + label: Seoul diff --git a/config/widgets/releases-followed.yml b/config/widgets/releases-followed.yml new file mode 100644 index 0000000..da11915 --- /dev/null +++ b/config/widgets/releases-followed.yml @@ -0,0 +1,8 @@ +- type: releases + title: 🆕 Releases + token: ${GITHUB_TOKEN} + show-source-icon: true + limit: 25 + collapse-after: 10 + repositories: + - glanceapp/glance diff --git a/config/widgets/weather-quito.yml b/config/widgets/weather-quito.yml new file mode 100644 index 0000000..718463c --- /dev/null +++ b/config/widgets/weather-quito.yml @@ -0,0 +1,6 @@ +- type: weather + title: 🌦️ Weather [Quito] + units: metric + hour-format: 12h + hide-location: false + location: Quito, Ecuador diff --git a/config/widgets/weather-seoul.yml b/config/widgets/weather-seoul.yml new file mode 100644 index 0000000..1dfd5e8 --- /dev/null +++ b/config/widgets/weather-seoul.yml @@ -0,0 +1,6 @@ +- type: weather + title: 🌦️ Weather [Seoul] + units: metric + hour-format: 12h + hide-location: false + location: Seoul, South Korea