installation
Get gaur running on your Arch system
installation
gaur runs on Arch Linux and its derivatives: Manjaro, EndeavourOS, CachyOS, you name it.
Here’s how to get it.
what you’ll need
Make sure these are on your system before installing:
- Arch Linux (or any Arch-based distro)
- An AUR helper: paru or yay
- fzf: fzf powers the fuzzy search
- paccache: Part of
pacman-contrib, used for cache management - Go 1.21+ (only needed if building from source)
Quick install of dependencies:
sudo pacman -S fzf pacman-contrib
install methods
AUR (recommended)
The fastest route. Pick your helper:
paru -S gaur-bin
# or
yay -S gaur-bin
go install
Already have Go set up? Grab the latest release directly:
go install github.com/prbhtkumr/gaur@latest
Make sure $GOPATH/bin (usually ~/go/bin) is in your $PATH.
from source
Want to run the bleeding edge?
git clone https://github.com/prbhtkumr/gaur.git
cd gaur
go build -o gaur .
sudo mv gaur /usr/local/bin/
verify
Check that everything’s working:
gaur --list-themes
If you see a list of themes, you’re all set. Run gaur to launch.
first run
On first launch, gaur will:
- Create a config file at
~/.config/gaur/config.toml - Open in Install mode (or your configured default)
- Load your local package database
Head over to configuration to customize your setup, or jump straight into usage to learn the shortcuts.