├── .editorconfig ├── .github └── workflows │ └── melpazoid.yml ├── .gitignore ├── .markdownlint-cli2.jsonc ├── .mise.toml ├── .pre-commit-config.yaml ├── CONTRIBUTING.md ├── ChangeLog ├── LICENSE ├── README.md ├── screenshot.png ├── sparkweather.el ├── sparkweather.org └── tangle.sh /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglet/sparkweather/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/melpazoid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglet/sparkweather/HEAD/.github/workflows/melpazoid.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.elc 2 | -------------------------------------------------------------------------------- /.markdownlint-cli2.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglet/sparkweather/HEAD/.markdownlint-cli2.jsonc -------------------------------------------------------------------------------- /.mise.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglet/sparkweather/HEAD/.mise.toml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglet/sparkweather/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglet/sparkweather/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglet/sparkweather/HEAD/ChangeLog -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglet/sparkweather/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglet/sparkweather/HEAD/README.md -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglet/sparkweather/HEAD/screenshot.png -------------------------------------------------------------------------------- /sparkweather.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglet/sparkweather/HEAD/sparkweather.el -------------------------------------------------------------------------------- /sparkweather.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglet/sparkweather/HEAD/sparkweather.org -------------------------------------------------------------------------------- /tangle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglet/sparkweather/HEAD/tangle.sh --------------------------------------------------------------------------------