├── .github └── workflows │ └── check.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── pfetch └── pfetch.1 /.github/workflows/check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Un1q32/pfetch/HEAD/.github/workflows/check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.vscode -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Un1q32/pfetch/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Un1q32/pfetch/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Un1q32/pfetch/HEAD/README.md -------------------------------------------------------------------------------- /pfetch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Un1q32/pfetch/HEAD/pfetch -------------------------------------------------------------------------------- /pfetch.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Un1q32/pfetch/HEAD/pfetch.1 --------------------------------------------------------------------------------