Iconic font aggregator, collection, and patcher
Windows
- Download Hack.zip from the Nerd Fonts releases page
- Extract the .ttf files.
- Select them all, right-click → Install for all users.
Ubuntu/WSL
cd ~/Downloads
wget -qO hack.zip https://github.com/ryanoasis/nerd-fonts/releases/download/v3.4.0/Hack.zip
mkdir -p ~/.local/share/fonts
unzip hack.zip -d ~/.local/share/fonts
fc-cache -fv
rm hack.zipThe Z shell (Zsh) is a Unix shell that can be used as an interactive login shell and as a command interpreter for shell scripting.
Ubuntu/WSL
sudo apt install zshwhich zshchsh -s $(which zsh)rm -f ~/.zcompdumpbash -c "$(curl --fail --show-error --silent --location https://raw.githubusercontent.com/zdharma-continuum/zinit/HEAD/scripts/install.sh)"The missing package manager for macOS (or Linux)
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"brew install fzffzf is a general-purpose command-line fuzzy finder.
brew install fdCommand-line JSON processor
brew install jqripgrep recursively searches directories for a regex pattern while respecting your gitignore
brew install ripgrepA smarter cd command. Supports all major shells.
brew install zoxideAn SVG rendering library.
brew install resvgPoppler is a PDF rendering library based on the xpdf-3.0 code base.
brew install poppleris a file archiver with a high compression ratio.
sudo apt install 7zip-
A cat(1) clone with wings.
brew install batA cross-platform, OpenGL terminal emulator.
- https://alacritty.org/
- https://github.com/alacritty/alacritty
- https://github.com/alacritty/alacritty/blob/master/INSTALL.md
- https://alacritty.org/config-alacritty.html
Ubuntu
sudo snap install alacritty --classicWindows
A terminal workspace with batteries included.
Ubuntu/WSL
cd ~/Downloads
wget -qO zellij.tar.gz https://github.com/zellij-org/zellij/releases/download/v0.43.1/zellij-x86_64-unknown-linux-musl.tar.gz
tar -xvf zellij.tar.gz
sudo mv zellij /usr/local/bin/
rm zellij.tar.gzBlazing fast terminal file manager written in Rust, based on async I/O.
Ubuntu/WSL
cd ~/Downloads
wget -qO yazi.zip https://github.com/sxyazi/yazi/releases/download/v25.5.31/yazi-x86_64-unknown-linux-gnu.zip
unzip -q yazi.zip -d yazi-temp
sudo mv yazi-temp/*/{yazi,ya} /usr/local/bin/
rm -rf yazi-temp yazi.zipThe minimal, blazing-fast, and infinitely customizable prompt for any shell!
Ubuntu/WSL
curl -sS https://starship.rs/install.sh | shstarship preset nerd-font-symbols -o ~/.config/starship.tomlVim-fork focused on extensibility and usability
Ubuntu/WSL
sudo snap install nvim --classic