├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── fc-conf └── 71-enable-kakwafont.conf ├── kakwafont-12-b.bdf ├── kakwafont-12-n.bdf └── misc ├── ex-1.png ├── ex-2.png ├── ex-3.png ├── screenshot.png └── test.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kakwa/kakwafont/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kakwa/kakwafont/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kakwa/kakwafont/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kakwa/kakwafont/HEAD/README.md -------------------------------------------------------------------------------- /fc-conf/71-enable-kakwafont.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kakwa/kakwafont/HEAD/fc-conf/71-enable-kakwafont.conf -------------------------------------------------------------------------------- /kakwafont-12-b.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kakwa/kakwafont/HEAD/kakwafont-12-b.bdf -------------------------------------------------------------------------------- /kakwafont-12-n.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kakwa/kakwafont/HEAD/kakwafont-12-n.bdf -------------------------------------------------------------------------------- /misc/ex-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kakwa/kakwafont/HEAD/misc/ex-1.png -------------------------------------------------------------------------------- /misc/ex-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kakwa/kakwafont/HEAD/misc/ex-2.png -------------------------------------------------------------------------------- /misc/ex-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kakwa/kakwafont/HEAD/misc/ex-3.png -------------------------------------------------------------------------------- /misc/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kakwa/kakwafont/HEAD/misc/screenshot.png -------------------------------------------------------------------------------- /misc/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kakwa/kakwafont/HEAD/misc/test.txt --------------------------------------------------------------------------------