mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2025-04-26 01:08:50 +01:00
Add package installation instructions to the docs and README (#605)
* Added Arch Linux * Added cargo * update & add to README * fixed typos Co-authored-by: nnyyxxxx <nnyyxxxx@users.noreply.github.com> --------- Co-authored-by: nnyyxxxx <nnyyxxxx@users.noreply.github.com>
This commit is contained in:
parent
bda712188c
commit
c0a9820c32
48
README.md
48
README.md
@ -24,6 +24,54 @@ curl -fsSL https://christitus.com/linux | sh
|
|||||||
```bash
|
```bash
|
||||||
curl -fsSL https://christitus.com/linuxdev | sh
|
curl -fsSL https://christitus.com/linuxdev | sh
|
||||||
```
|
```
|
||||||
|
## ⬇️ Installation
|
||||||
|
|
||||||
|
Linutil is also available as a package in various repositories:
|
||||||
|
|
||||||
|
[](https://repology.org/project/linutil/versions)
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary>Arch Linux</summary>
|
||||||
|
|
||||||
|
Linutil can be installed on [Arch Linux](https://archlinux.org) with three different [AUR](https://aur.archlinux.org) packages:
|
||||||
|
|
||||||
|
- `linutil` - Stable release compiled from source
|
||||||
|
- `linutil-bin` - Stable release pre-compiled
|
||||||
|
- `linutil-git` - Compiled from the last commit (not recommended)
|
||||||
|
|
||||||
|
by running:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
git clone https://aur.archlinux.org/<package>.git
|
||||||
|
cd linutil
|
||||||
|
makepkg -si
|
||||||
|
```
|
||||||
|
|
||||||
|
Replace `<package>` with your preferred package.
|
||||||
|
|
||||||
|
If you use [yay](https://github.com/Jguer/yay), [paru](https://github.com/Morganamilo/paru) or any other [AUR Helper](https://wiki.archlinux.org/title/AUR_helpers), it's even simplier:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
paru -S linutil
|
||||||
|
```
|
||||||
|
|
||||||
|
Replace `paru` with your preferred helper and `linutil` with your preferred package.
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary>Cargo</summary>
|
||||||
|
|
||||||
|
Linutil can be installed via [Cargo](https://doc.rust-lang.org/cargo) with:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
cargo install linutil
|
||||||
|
```
|
||||||
|
|
||||||
|
Note that crates installed using `cargo install` require manual updating with `cargo install --force` (update functionality is [included in LinUtil](https://christitustech.github.io/linutil/userguide/#applications-setup))
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
## 💖 Support
|
## 💖 Support
|
||||||
|
|
||||||
If you find Linutil helpful, please consider giving it a ⭐️ to show your support!
|
If you find Linutil helpful, please consider giving it a ⭐️ to show your support!
|
||||||
|
@ -1,8 +1,10 @@
|
|||||||
# Welcome to the LinUtil Documentation!
|
# Welcome to the LinUtil Documentation!
|
||||||
|
|
||||||
[](https://github.com/ChrisTitusTech/linutil/releases/latest)
|
[](https://github.com/ChrisTitusTech/linutil/releases/latest)
|
||||||

|

|
||||||
[](https://discord.gg/bujFYKAHSp)
|
[](https://discord.gg/bujFYKAHSp)
|
||||||
|
|
||||||
|
[](https://crates.io/crates/linutil_tui) [](https://aur.archlinux.org/packages/linutil) [](https://aur.archlinux.org/packages/linutil-bin)
|
||||||
|
|
||||||
## Running the latest release of LinUtil
|
## Running the latest release of LinUtil
|
||||||
|
|
||||||
@ -15,6 +17,56 @@ curl -fsSL https://christitus.com/linux | sh
|
|||||||
```
|
```
|
||||||
---
|
---
|
||||||
|
|
||||||
|
### Installation
|
||||||
|
|
||||||
|
LinUtil is also available as a package in various repositories:
|
||||||
|
|
||||||
|
[](https://repology.org/project/linutil/versions)
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary>Arch Linux</summary>
|
||||||
|
|
||||||
|
LinUtil can be installed on [Arch Linux](https://archlinux.org) with three different [AUR](https://aur.archlinux.org) packages:
|
||||||
|
|
||||||
|
- `linutil` - Stable release compiled from source
|
||||||
|
- `linutil-bin` - Stable release pre-compiled
|
||||||
|
- `linutil-git` - Compiled from the last commit (not recommended)
|
||||||
|
|
||||||
|
by running:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
git clone https://aur.archlinux.org/<package>.git
|
||||||
|
cd linutil
|
||||||
|
makepkg -si
|
||||||
|
```
|
||||||
|
|
||||||
|
Replace `<package>` with your preferred package.
|
||||||
|
|
||||||
|
If you use [yay](https://github.com/Jguer/yay), [paru](https://github.com/Morganamilo/paru) or any other [AUR Helper](https://wiki.archlinux.org/title/AUR_helpers), it's even simpler:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
paru -S linutil
|
||||||
|
```
|
||||||
|
|
||||||
|
Replace `paru` with your preferred helper and `linutil` with your preferred package.
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary>Cargo</summary>
|
||||||
|
|
||||||
|
LinUtil can be installed via [Cargo](https://doc.rust-lang.org/cargo) with:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
cargo install linutil
|
||||||
|
```
|
||||||
|
|
||||||
|
Note that crates installed using `cargo install` require manual updating with `cargo install --force` (update functionality is [included in LinUtil](https://christitustech.github.io/linutil/userguide/#applications-setup))
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
After you've ran the command, you should see a GUI on your screen; It will look something like this:
|
After you've ran the command, you should see a GUI on your screen; It will look something like this:
|
||||||
|
|
||||||

|

|
||||||
|
Loading…
x
Reference in New Issue
Block a user