puppyfetch is a system fetch for some Linux distributions.
$ git clone https://github.com/makichiis/puppyfetch.git
$ cd puppyfetch
$ make
$ sudo make install
$ sudo make uninstall
Just to run puppyfetch via Nix:
nix run "github:makichiis/puppyfetch"
to install on NixOS:
# flake.nix
{
inputs = {
puppyfetch.url = "github:makichiis/puppyfetch";
};
}
# configuration.nix
{ inputs, pkgs, ... }: {
environment.systemPackages = [
inputs.puppyfetch.packages.${pkgs.stdenv.system}.puppyfetch
];
}
=======
- Compatability with Android devices.
- Compatability with Raspberry PI and other embedded chips running Linux.
If you want to add support for a certain OS/device(s) or add more aliases to the CPU list, feel free to PR and I'll review it.