├── .github └── FUNDING.yml ├── .gitignore ├── CHANGELOG ├── Makefile ├── README.md ├── nyancat.1 ├── src ├── Makefile ├── animation.c ├── nyancat.c └── telnet.h └── systemd ├── nyancat.socket └── nyancat@.service /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [klange] 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | nyancat 2 | *.o 3 | *.pyc 4 | -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klange/nyancat/HEAD/CHANGELOG -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klange/nyancat/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klange/nyancat/HEAD/README.md -------------------------------------------------------------------------------- /nyancat.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klange/nyancat/HEAD/nyancat.1 -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klange/nyancat/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/animation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klange/nyancat/HEAD/src/animation.c -------------------------------------------------------------------------------- /src/nyancat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klange/nyancat/HEAD/src/nyancat.c -------------------------------------------------------------------------------- /src/telnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klange/nyancat/HEAD/src/telnet.h -------------------------------------------------------------------------------- /systemd/nyancat.socket: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klange/nyancat/HEAD/systemd/nyancat.socket -------------------------------------------------------------------------------- /systemd/nyancat@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klange/nyancat/HEAD/systemd/nyancat@.service --------------------------------------------------------------------------------