Skip to content

Installation

Kiëd Llaentenn edited this page Apr 5, 2019 · 15 revisions

Contents

Scoop

The official way to install Winfetch is with Scoop:

  • Make sure that you have the extras bucket installed:
    $ scoop bucket list
    main
    java
    ...
    extras
    
  • Install the winfetch package:
    $ scoop install winfetch
    
    You should output like this:
    Installing 'winfetch' (1.0.0) [64bit]
    Loading v1.0.0 from cache
    Checking hash of v1.0.0 ... ok.
    Extracting dl.7z ... done.
    Linking ~\scoop\apps\winfetch\current => ~\scoop\apps\winfetch\1.0.0
    Creating shim for 'winfetch'.
    'winfetch' (1.0.0) was installed successfully!
    

Manual

For people who are somehow allergic to package managers.

NOTE: By not installing Winfetch via a package manager, you will not be able to automatically update Winfetch. Each time a new version is released, you will have to go through these steps again.

First, clone this repository:

$ git clone [email protected]:lptstr/winfetch.git winfetch

Then, reset the repository to the latest release:

$ cd winfetch
$ git reset --hard v0.0.0

Then, move the src/winfetch.ps1 file to somewhere on your PATH:

$ mv .\src\winfetch.ps1 ~\bin\
Clone this wiki locally