├── .gitattributes ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md ├── funding.yml └── settings.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── catimg ├── catimg-ext-colors.png ├── catimg.spec ├── completion └── _catimg ├── man └── catimg.1 ├── src ├── catimg.c ├── khash.h ├── sh_color.c ├── sh_color.h ├── sh_image.c ├── sh_image.h ├── sh_utils.c ├── sh_utils.h └── stb_image.h └── test-images ├── google.ico ├── mewtwo-back.png └── mewtwo-front.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posva/catimg/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posva/catimg/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posva/catimg/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posva/catimg/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posva/catimg/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/funding.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posva/catimg/HEAD/.github/funding.yml -------------------------------------------------------------------------------- /.github/settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posva/catimg/HEAD/.github/settings.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posva/catimg/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posva/catimg/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posva/catimg/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posva/catimg/HEAD/README.md -------------------------------------------------------------------------------- /catimg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posva/catimg/HEAD/catimg -------------------------------------------------------------------------------- /catimg-ext-colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posva/catimg/HEAD/catimg-ext-colors.png -------------------------------------------------------------------------------- /catimg.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posva/catimg/HEAD/catimg.spec -------------------------------------------------------------------------------- /completion/_catimg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posva/catimg/HEAD/completion/_catimg -------------------------------------------------------------------------------- /man/catimg.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posva/catimg/HEAD/man/catimg.1 -------------------------------------------------------------------------------- /src/catimg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posva/catimg/HEAD/src/catimg.c -------------------------------------------------------------------------------- /src/khash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posva/catimg/HEAD/src/khash.h -------------------------------------------------------------------------------- /src/sh_color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posva/catimg/HEAD/src/sh_color.c -------------------------------------------------------------------------------- /src/sh_color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posva/catimg/HEAD/src/sh_color.h -------------------------------------------------------------------------------- /src/sh_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posva/catimg/HEAD/src/sh_image.c -------------------------------------------------------------------------------- /src/sh_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posva/catimg/HEAD/src/sh_image.h -------------------------------------------------------------------------------- /src/sh_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posva/catimg/HEAD/src/sh_utils.c -------------------------------------------------------------------------------- /src/sh_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posva/catimg/HEAD/src/sh_utils.h -------------------------------------------------------------------------------- /src/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posva/catimg/HEAD/src/stb_image.h -------------------------------------------------------------------------------- /test-images/google.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posva/catimg/HEAD/test-images/google.ico -------------------------------------------------------------------------------- /test-images/mewtwo-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posva/catimg/HEAD/test-images/mewtwo-back.png -------------------------------------------------------------------------------- /test-images/mewtwo-front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posva/catimg/HEAD/test-images/mewtwo-front.png --------------------------------------------------------------------------------