๐ mcfetch (monochromatic fetch) is a lightweight system information fetching program, similar to ufetch but with color options.
Quickly install mcfetch
with a one-liner:
bash <(curl -L https://raw.githubusercontent.com/dybdeskarphet/mcfetch/main/install.sh)
If you have Rust and Cargo installed, you can install mcfetch
directly from Crates.io:
cargo install mcfetch
For Arch-based Linux distributions, install mcfetch from the AUR:
# For paru users
paru -S mcfetch-git
# For yay users
yay -S mcfetch-git
Clone the repository, build the binary, and move it to your PATH:
git clone https://github.com/dybdeskarphet/mcfetch.git
cd mcfetch
cargo build --release
sudo mv target/release/mcfetch /usr/bin/
Run mcfetch
with your preferred color:
mcfetch --color <COLOR>
Example:
mcfetch --color blue
If you installed mcfetch using the installation script, you can uninstall it easily:
bash <(curl -L https://raw.githubusercontent.com/dybdeskarphet/mcfetch/main/install.sh) --uninstall
This will remove the mcfetch binary from your system.
If you installed it manually or through cargo, remove it as follows:
- Cargo uninstallation:
cargo uninstall mcfetch
- Manual uninstallation:
sudo rm /usr/bin/mcfetch
- Aur uninstallation:
# For paru users
paru -R mcfetch-git
# For yay users
yay -R mcfetch-git
This project is licensed under the GNU General Public License v3.0. See the LICENSE file for more details.