├── .gitignore ├── LICENSE.md ├── README.md ├── grub.cfg ├── init ├── kernel.i686.config ├── kernel.x86_64.config ├── screenshot.png └── sethostname.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendstofortytwo/neofetch-linux/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendstofortytwo/neofetch-linux/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendstofortytwo/neofetch-linux/HEAD/README.md -------------------------------------------------------------------------------- /grub.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendstofortytwo/neofetch-linux/HEAD/grub.cfg -------------------------------------------------------------------------------- /init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendstofortytwo/neofetch-linux/HEAD/init -------------------------------------------------------------------------------- /kernel.i686.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendstofortytwo/neofetch-linux/HEAD/kernel.i686.config -------------------------------------------------------------------------------- /kernel.x86_64.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendstofortytwo/neofetch-linux/HEAD/kernel.x86_64.config -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendstofortytwo/neofetch-linux/HEAD/screenshot.png -------------------------------------------------------------------------------- /sethostname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendstofortytwo/neofetch-linux/HEAD/sethostname.c --------------------------------------------------------------------------------