├── .github └── FUNDING.yml ├── CODE_OF_CONDUCT.md ├── ISSUE_TEMPLATE.md ├── LICENSE ├── README.md ├── data └── Screenshot.png └── weatherintheclock@JasonLG1979.github.io ├── extension.js └── metadata.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [JasonLG1979] 4 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonLG1979/gnome-shell-extension-weather-in-the-clock/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonLG1979/gnome-shell-extension-weather-in-the-clock/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonLG1979/gnome-shell-extension-weather-in-the-clock/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonLG1979/gnome-shell-extension-weather-in-the-clock/HEAD/README.md -------------------------------------------------------------------------------- /data/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonLG1979/gnome-shell-extension-weather-in-the-clock/HEAD/data/Screenshot.png -------------------------------------------------------------------------------- /weatherintheclock@JasonLG1979.github.io/extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonLG1979/gnome-shell-extension-weather-in-the-clock/HEAD/weatherintheclock@JasonLG1979.github.io/extension.js -------------------------------------------------------------------------------- /weatherintheclock@JasonLG1979.github.io/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonLG1979/gnome-shell-extension-weather-in-the-clock/HEAD/weatherintheclock@JasonLG1979.github.io/metadata.json --------------------------------------------------------------------------------