-
Notifications
You must be signed in to change notification settings - Fork 0
Installation
Open PowerShell and run:
irm https://github.com/Buct0r/fullfetch/releases/latest/download/install.ps1 | iexThis downloads the latest release, verifies the checksum, installs to %LOCALAPPDATA%\fullfetch, adds it to your PATH, and automatically migrates your config with the latest features if one already exists.
Go to the release page and download the fullfetch_installer_(your_arch).exe.
Download the fullfetch_(your_os)_(your_arch).zip and extract it wherever you want. To make fullfetch available in every terminal, add the extracted folder address to your PATH variable.
Open your terminal and type:
winget install fullfetchAdd the tap:
brew tap Buct0r/fullfetchand then install it:
brew install fullfetchHead to the release page and download the fullfetch_Darwin_(your_arch).tar.gz file, and install it.
curl -sfL https://github.com/Buct0r/fullfetch/releases/latest/download/install.sh | shTo check for a newer release and update fullfetch directly from the app, run:
fullfetch -updateDownload the .deb package for your architecture from the release page and install:
sudo dpkg -i fullfetch_<version>_<arch>.debDownload the .rpm package from the release page and install:
sudo dnf install fullfetch_<version>_<arch>.rpmbrew tap Buct0r/fullfetch
brew install fullfetchInstall directly from the GitHub flake:
nix profile install github:Buct0r/fullfetchOr run without installing:
nix run github:Buct0r/fullfetchTo use fullfetch in your NixOS system configuration, add the flake as an input and include the package:
{
inputs.fullfetch.url = "github:Buct0r/fullfetch";
outputs = { self, nixpkgs, fullfetch, ... }: {
nixosConfigurations.myhost = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
{
environment.systemPackages = [ fullfetch.packages.x86_64-linux.default ];
}
];
};
};
}Download the fullfetch_Linux_<arch>.tar.gz from the release page, extract and place the binary in your PATH.
Requirements:
- Go(latest version)
Just type:
go install github.com/Buct0r/fullfetch@latest