From ce80530858d4ce2ed098450fbe6ef243879dc4ec Mon Sep 17 00:00:00 2001 From: Javier Tia Date: Wed, 4 Feb 2026 15:37:40 -0600 Subject: [PATCH] docs: Add AUR installation instructions for Arch Linux The README currently lacks installation instructions for Arch Linux users, who represent a significant portion of the Linux community. This forces Arch users to either build manually from source or use the generic Go install method, both of which bypass the benefits of package management (dependency tracking, easy updates, and system integration). Add AUR installation instructions offering both pre-built binary and source-based options. This aligns with the existing package manager approach used for macOS (Homebrew) and provides Arch users with a native installation path that integrates with their system's package management workflow. Signed-off-by: Javier Tia --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index 13c5bcc..c417755 100644 --- a/README.md +++ b/README.md @@ -38,6 +38,18 @@ brew install difi go install github.com/oug-t/difi/cmd/difi@latest ``` +#### AUR (Arch Linux) + +**Binary (pre-built):** +```bash +pikaur -S difi-bin +``` + +**Build from source:** +```bash +pikaur -S difi +``` + #### Manual (Linux / Windows) - Download the binary from Releases and add it to your `$PATH`.