diff --git a/pages/getting-started/1-installation.mdx b/pages/getting-started/1-installation.mdx
index e726547..4da64dc 100644
--- a/pages/getting-started/1-installation.mdx
+++ b/pages/getting-started/1-installation.mdx
@@ -1,3 +1,5 @@
+import { Callout } from 'nextra/components'
+
# Installation
The preferred way of installing Lune is using [Aftman](https://github.com/lpghatguy/aftman).
@@ -24,18 +26,29 @@ when installing here.
Community-maintained
-### ArchLinux User Repository
+### AUR (Arch User Repository)
+There are a number of packages available on the AUR:
+
+- `lune` - Builds from the latest stable release source.
+- `lune-git` - Builds from the latest commit in the repo; unstable.
+- `lune-bin` - Installs a precompiled binary from GitHub Release artifacts.
+
+These can be installed with your favourite AUR manager as such:
```sh copy filename="Bash"
-paru -S lune
+paru -S [PACKAGE_NAME]
```
***or***
```sh copy filename="Bash"
-yay -S lune
+yay -S [PACKAGE_NAME]
```
+
+ Only one of these AUR packages must be installed at a time in order to prevent conflicts.
+
+