From 983cdf6ad5ab67d2a6b78038049a8a68ddc42ae1 Mon Sep 17 00:00:00 2001 From: shuvashish76 Date: Sat, 7 Dec 2024 05:38:35 +0000 Subject: [PATCH 1/3] Update InstallOnLinux.md with repology badge --- Documentation/InstallOnLinux.md | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/Documentation/InstallOnLinux.md b/Documentation/InstallOnLinux.md index c47afa82..de741fd1 100644 --- a/Documentation/InstallOnLinux.md +++ b/Documentation/InstallOnLinux.md @@ -4,10 +4,14 @@ ...or just tell more friends. As long as I'm maintaining this software, it will remain **free** and **open source**. +# Packaging status + +[![Packaging status](https://repology.org/badge/vertical-allrepos/libation.svg)](https://repology.org/project/libation/versions) + # Install and Run Libation on Ubuntu -New Libation releases are automatically packed into .deb and .rpm package and are available from the Libation repository's releases page. +New Libation releases are automatically packed into `.deb` and `.rpm` package and are available from the Libation repository's releases page. Run this command in your terminal to download and install Libation, replacing the url with the latest Libation package url: @@ -22,7 +26,18 @@ Run this command in your terminal to download and install Libation, replacing th wget -O libation.rpm https://github.com/rmcrackan/Libation/releases/download/vX.X.X/Libation.X.X.X-linux-chardonnay.rpm && sudo yum install ./libation.rpm ``` - +- Arch Linux + ```Console + yay -S libation + ``` + This package is available on [Arch User Repository](https://aur.archlinux.org/packages/libation), install via your choice of [AUR helpers](https://wiki.archlinux.org/title/AUR_helpers). + Thanks to [mhdi](https://aur.archlinux.org/account/mhdi) who is taking care of AUR package maintenance. +- NixOS/package + ```Console + nix-shell -p libation + ``` + A nix-shell will temporarily modify your $PATH environment variable. This can be used to try a piece of software before deciding to permanently install it. + Thanks to [TomaSajt](https://github.com/tomasajt) for taking care of Nix package maintenance. If your desktop uses gtk, you should now see Libation among your applications. From 525afdf050f3641bc23d0ef2b97a33c4cc7a0f3b Mon Sep 17 00:00:00 2001 From: shuvashish76 Date: Sat, 7 Dec 2024 06:03:46 +0000 Subject: [PATCH 2/3] Update InstallOnLinux.md --- Documentation/InstallOnLinux.md | 27 ++++++++++++++++++++++----- 1 file changed, 22 insertions(+), 5 deletions(-) diff --git a/Documentation/InstallOnLinux.md b/Documentation/InstallOnLinux.md index de741fd1..bdca9af5 100644 --- a/Documentation/InstallOnLinux.md +++ b/Documentation/InstallOnLinux.md @@ -33,11 +33,28 @@ Run this command in your terminal to download and install Libation, replacing th This package is available on [Arch User Repository](https://aur.archlinux.org/packages/libation), install via your choice of [AUR helpers](https://wiki.archlinux.org/title/AUR_helpers). Thanks to [mhdi](https://aur.archlinux.org/account/mhdi) who is taking care of AUR package maintenance. - NixOS/package - ```Console - nix-shell -p libation - ``` - A nix-shell will temporarily modify your $PATH environment variable. This can be used to try a piece of software before deciding to permanently install it. - Thanks to [TomaSajt](https://github.com/tomasajt) for taking care of Nix package maintenance. + - Install via `nix-shell` + ```Console + nix-shell -p libation + ``` + A `nix-shell` will temporarily modify your $PATH environment variable. This can be used to try a piece of software before deciding to permanently install it. + - Install via NixOS configuration + ```Console + environment.systemPackages = [ + pkgs.libation + ]; + ``` + Add the following Nix code to your NixOS Configuration, usually located in `/etc/nixos/configuration.nix` + - On NixOS via via `nix-env` + ```Console + nix-env -iA nixos.libation + ``` + - On Non NixOS via `nix-env` + ```Console + nix-env -iA nixpkgs.libation + ``` + Warning: Using `nix-env` permanently modifies a local profile of installed packages. This must be updated and maintained by the user in the same way as with a traditional package manager. + Thanks to [TomaSajt](https://github.com/tomasajt) for taking care of Nix package maintenance. If your desktop uses gtk, you should now see Libation among your applications. From 9ebc4444bd8d63695332904b6deb451534872a31 Mon Sep 17 00:00:00 2001 From: shuvashish76 Date: Sat, 7 Dec 2024 06:24:34 +0000 Subject: [PATCH 3/3] Update InstallOnLinux.md --- Documentation/InstallOnLinux.md | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/Documentation/InstallOnLinux.md b/Documentation/InstallOnLinux.md index bdca9af5..90b432d7 100644 --- a/Documentation/InstallOnLinux.md +++ b/Documentation/InstallOnLinux.md @@ -4,35 +4,33 @@ ...or just tell more friends. As long as I'm maintaining this software, it will remain **free** and **open source**. -# Packaging status +## Packaging status [![Packaging status](https://repology.org/badge/vertical-allrepos/libation.svg)](https://repology.org/project/libation/versions) - -# Install and Run Libation on Ubuntu - New Libation releases are automatically packed into `.deb` and `.rpm` package and are available from the Libation repository's releases page. - Run this command in your terminal to download and install Libation, replacing the url with the latest Libation package url: -- Debian +### Debian ```Console wget -O libation.deb https://github.com/rmcrackan/Libation/releases/download/vX.X.X/Libation.X.X.X-linux-chardonnay.deb && sudo apt install ./libation.deb ``` -- Redhat and CentOS +### Redhat and CentOS ```Console wget -O libation.rpm https://github.com/rmcrackan/Libation/releases/download/vX.X.X/Libation.X.X.X-linux-chardonnay.rpm && sudo yum install ./libation.rpm ``` -- Arch Linux +--- +### Arch Linux ```Console yay -S libation ``` This package is available on [Arch User Repository](https://aur.archlinux.org/packages/libation), install via your choice of [AUR helpers](https://wiki.archlinux.org/title/AUR_helpers). - Thanks to [mhdi](https://aur.archlinux.org/account/mhdi) who is taking care of AUR package maintenance. -- NixOS/package + + Thanks to [mhdi](https://aur.archlinux.org/account/mhdi) for taking care of AUR package maintenance. +### NixOS - Install via `nix-shell` ```Console nix-shell -p libation @@ -54,6 +52,7 @@ Run this command in your terminal to download and install Libation, replacing th nix-env -iA nixpkgs.libation ``` Warning: Using `nix-env` permanently modifies a local profile of installed packages. This must be updated and maintained by the user in the same way as with a traditional package manager. + Thanks to [TomaSajt](https://github.com/tomasajt) for taking care of Nix package maintenance. If your desktop uses gtk, you should now see Libation among your applications.