Skip to content

Installation

Buct0r edited this page Jul 17, 2026 · 4 revisions

For Windows

PowerShell install (Recommended)

Open PowerShell and run:

irm https://github.com/Buct0r/fullfetch/releases/latest/download/install.ps1 | iex

This 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.

Pre-Built installer

Go to the release page and download the fullfetch_installer_(your_arch).exe.

Portable version

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.

Winget

Open your terminal and type:

winget install fullfetch

For MacOs

Homebrew (Recommended)

Add the tap:

brew tap Buct0r/fullfetch

and then install it:

brew install fullfetch

Portable

Head to the release page and download the fullfetch_Darwin_(your_arch).tar.gz file, and install it.

For Linux

Quick install (any distro)

curl -sfL https://github.com/Buct0r/fullfetch/releases/latest/download/install.sh | sh

Self-update

To check for a newer release and update fullfetch directly from the app, run:

fullfetch -update

Debian / Ubuntu (.deb)

Download the .deb package for your architecture from the release page and install:

sudo dpkg -i fullfetch_<version>_<arch>.deb

Fedora / RHEL (.rpm)

Download the .rpm package from the release page and install:

sudo dnf install fullfetch_<version>_<arch>.rpm

Homebrew

brew tap Buct0r/fullfetch
brew install fullfetch

NixOS / Nix

Install directly from the GitHub flake:

nix profile install github:Buct0r/fullfetch

Or run without installing:

nix run github:Buct0r/fullfetch

To 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 ];
        }
      ];
    };
  };
}

Portable (any Linux)

Download the fullfetch_Linux_<arch>.tar.gz from the release page, extract and place the binary in your PATH.

Using Go

Requirements:

  • Go(latest version)

Just type:

go install github.com/Buct0r/fullfetch@latest

Clone this wiki locally