├── .envrc ├── .github └── workflows │ └── update.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── Makefile ├── README.md ├── nix ├── sources.json └── sources.nix ├── poetry.lock ├── pyproject.toml ├── shell.nix └── templates ├── config.yaml ├── default.mustache └── recolor.mustache /.envrc: -------------------------------------------------------------------------------- 1 | layout_poetry 2 | -------------------------------------------------------------------------------- /.github/workflows/update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZeke/base16-zathura/HEAD/.github/workflows/update.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZeke/base16-zathura/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZeke/base16-zathura/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZeke/base16-zathura/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZeke/base16-zathura/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZeke/base16-zathura/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZeke/base16-zathura/HEAD/README.md -------------------------------------------------------------------------------- /nix/sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZeke/base16-zathura/HEAD/nix/sources.json -------------------------------------------------------------------------------- /nix/sources.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZeke/base16-zathura/HEAD/nix/sources.nix -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZeke/base16-zathura/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZeke/base16-zathura/HEAD/pyproject.toml -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZeke/base16-zathura/HEAD/shell.nix -------------------------------------------------------------------------------- /templates/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZeke/base16-zathura/HEAD/templates/config.yaml -------------------------------------------------------------------------------- /templates/default.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZeke/base16-zathura/HEAD/templates/default.mustache -------------------------------------------------------------------------------- /templates/recolor.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaoZeke/base16-zathura/HEAD/templates/recolor.mustache --------------------------------------------------------------------------------