This is a simple Go application that continuously checks the status of the Arch User Repository (AUR) and displays it in the terminal.
You can download the latest pre-built binary for Linux from the GitHub Releases page.
- Go to the latest release page.
- Download the
aur-upbinary. - (Optional) Download the
aur-up.sha256file to verify the integrity of the binary. - Make the binary executable:
chmod +x aur-up
- (Optional) Move the binary to a directory in your
PATH:sudo mv aur-up /usr/local/bin/
- Go programming language installed on your system.
-
Clone the repository or download the source code.
-
Navigate to the project directory:
cd aur-up -
Tidy the dependencies:
go mod tidy
-
Run the application:
go run main.go
-
Build the application:
To build the application into a single executable, run the following command:
go build -o aur-up main.go
