From 7581bc4ea3dd4f73fdf976873d41638406145ced Mon Sep 17 00:00:00 2001 From: Filip Tibell Date: Mon, 14 Aug 2023 11:54:13 -0500 Subject: [PATCH] Order installation methods by (hypothetical) usage, minor formatting fixes and cleanup --- pages/getting-started/1-installation.mdx | 65 +++++++++++++----------- 1 file changed, 35 insertions(+), 30 deletions(-) diff --git a/pages/getting-started/1-installation.mdx b/pages/getting-started/1-installation.mdx index 1bdb736..378d112 100644 --- a/pages/getting-started/1-installation.mdx +++ b/pages/getting-started/1-installation.mdx @@ -26,32 +26,9 @@ when installing here.
Community-maintained -### 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 [PACKAGE_NAME] -``` - -***or*** - -```sh copy filename="Bash" -yay -S [PACKAGE_NAME] -``` - - - Only one of these AUR packages must be installed at a time in order to prevent conflicts. - - - ### Scoop -Windows users can use [scoop](https://scoop.sh) to install lune. + +Windows users can use [Scoop](https://scoop.sh) to install Lune. ```ps copy filename="PowerShell" # Add the bucket @@ -62,7 +39,8 @@ scoop install lune ``` ### Homebrew -[Homebrew](https://brew.sh) is a package manager for MacOS and Linux. Lune has been published to Homebrew Core, so it can be installed with: + +macOS and Linux users can use [Homebrew](https://brew.sh) to install Lune. ```sh copy filename="Bash" # Installs latest stable precompiled binary @@ -77,16 +55,43 @@ brew install lune --build-from-source ``` ### APT -APT is a package manager for debian based distributions that uses dpkg to install packages. -Follow the instructions at the unofficial [lune-packaging](https://github.com/CompeyDev/lune-packaging#apt) repository to install lune using APT. +APT is a package manager for Debian-based Linux distributions that uses `dpkg` to install packages.
+Follow the instructions at the unofficial [lune-packaging](https://github.com/CompeyDev/lune-packaging#apt) repository to install Lune using APT. - The APT repository is entirely community maintained and is not endorsed by or affiliated with lune. + The APT repository is hosted by the community and is not endorsed by or affiliated with Lune. ### AppImage -AppImages are platform independent sandboxed binaries that work out of the box. Go to the [GitHub Actions Page](https://github.com/CompeyDev/lune-packaging/actions/workflows/appimage.yaml), and download the artifact suitable for your architecture from the build artifacts. + +AppImages are platform independent sandboxed binaries that work out of the box.
+Go to the [GitHub Actions Page](https://github.com/CompeyDev/lune-packaging/actions/workflows/appimage.yaml), and download the artifact suitable for your architecture from the build artifacts. + +### 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 preferred AUR package manager as such: + +```sh copy filename="Bash" +paru -S [PACKAGE_NAME] +``` + +***or*** + +```sh copy filename="Bash" +yay -S [PACKAGE_NAME] +``` + + + Only one of these AUR packages must be installed at a time in order to prevent conflicts. + +