├── .github └── workflows │ ├── ci.yml │ ├── jekyll-gh-pages.yml │ ├── update-aur.yml │ └── update-homebrew.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── docs ├── .nojekyll ├── CONTRIBUTING.md ├── Gemfile ├── _config.yml ├── assets │ └── css │ │ └── custom-dark-moke.css ├── configuration.md ├── contributors.md ├── development.md ├── gallery.md ├── index.md ├── installation.md ├── providers.md └── usage.md ├── flake.lock ├── flake.nix ├── pyproject.toml ├── requirements.txt ├── setup.py ├── src └── gitfetch │ ├── __init__.py │ ├── cache.py │ ├── cli.py │ ├── config.py │ ├── display.py │ ├── fetcher.py │ └── text_patterns.py └── tests └── test_cache.py /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matars/gitfetch/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/jekyll-gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matars/gitfetch/HEAD/.github/workflows/jekyll-gh-pages.yml -------------------------------------------------------------------------------- /.github/workflows/update-aur.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matars/gitfetch/HEAD/.github/workflows/update-aur.yml -------------------------------------------------------------------------------- /.github/workflows/update-homebrew.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matars/gitfetch/HEAD/.github/workflows/update-homebrew.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matars/gitfetch/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matars/gitfetch/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matars/gitfetch/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matars/gitfetch/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matars/gitfetch/HEAD/README.md -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matars/gitfetch/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matars/gitfetch/HEAD/docs/Gemfile -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matars/gitfetch/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/assets/css/custom-dark-moke.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matars/gitfetch/HEAD/docs/assets/css/custom-dark-moke.css -------------------------------------------------------------------------------- /docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matars/gitfetch/HEAD/docs/configuration.md -------------------------------------------------------------------------------- /docs/contributors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matars/gitfetch/HEAD/docs/contributors.md -------------------------------------------------------------------------------- /docs/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matars/gitfetch/HEAD/docs/development.md -------------------------------------------------------------------------------- /docs/gallery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matars/gitfetch/HEAD/docs/gallery.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matars/gitfetch/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matars/gitfetch/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/providers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matars/gitfetch/HEAD/docs/providers.md -------------------------------------------------------------------------------- /docs/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matars/gitfetch/HEAD/docs/usage.md -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matars/gitfetch/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matars/gitfetch/HEAD/flake.nix -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matars/gitfetch/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matars/gitfetch/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matars/gitfetch/HEAD/setup.py -------------------------------------------------------------------------------- /src/gitfetch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matars/gitfetch/HEAD/src/gitfetch/__init__.py -------------------------------------------------------------------------------- /src/gitfetch/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matars/gitfetch/HEAD/src/gitfetch/cache.py -------------------------------------------------------------------------------- /src/gitfetch/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matars/gitfetch/HEAD/src/gitfetch/cli.py -------------------------------------------------------------------------------- /src/gitfetch/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matars/gitfetch/HEAD/src/gitfetch/config.py -------------------------------------------------------------------------------- /src/gitfetch/display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matars/gitfetch/HEAD/src/gitfetch/display.py -------------------------------------------------------------------------------- /src/gitfetch/fetcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matars/gitfetch/HEAD/src/gitfetch/fetcher.py -------------------------------------------------------------------------------- /src/gitfetch/text_patterns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matars/gitfetch/HEAD/src/gitfetch/text_patterns.py -------------------------------------------------------------------------------- /tests/test_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matars/gitfetch/HEAD/tests/test_cache.py --------------------------------------------------------------------------------