diff --git a/docs/video/smoothie/installation.md b/docs/video/smoothie/installation.md index c4e1068..6045402 100644 --- a/docs/video/smoothie/installation.md +++ b/docs/video/smoothie/installation.md @@ -82,13 +82,61 @@ icon: material/folder-download === "Linux" - todo, cargo should be able to compile it - - for arch nerds see the dependencies of - - * you'll also need for frame blending - * and for pre-interp - + !!! note "NOT UPSTREAM" + + This is not the upstream repo at [couleur-tweak-tips/smoothie-rs](https://github.com/couleur-tweak-tips/smoothie-rs), this is a fork of smoothie that is maintained + by hybridkernel at + [hzqki/smoothie-rs](https://github.com/hzqki/smoothie-rs) all bug reports about linux should go to this repo, and not the upstream. + + **Archlinux** + + You can install smoothie-rs on Archlinux by either adding the [smrs-arch-repo](https://gitlab.com/hzqki/smrs-arch-repo) or installing it via the AUR + + Repo (Recommended): + + 1. Add `smrs-arch-repo` to your `/etc/pacman.conf` + + ```toml + [smrs-arch-repo] + SigLevel = Optional DatabaseOptional + Server = https://gitlab.com/hzqki/$repo/-/raw/main/$arch + ``` + + 2. Install `smoothie-rs-linux-git` through pacman + + ```bash + pacman -S smoothie-rs-linux-git + ``` + + AUR + + 1. Install `smoothie-rs-linux-git` from the AUR + + ```bash + yay -S smoothie-rs-linux-git + ``` + + **Other Distros** + + 1. Install [Distrobox](https://distrobox.it/) + + 2. Install Archlinux inside distrobox: + + ```bash + distrobox-create -i archlinux:latest -n smrs + ``` + ```bash + distrobox-enter smrs + ``` + Update keyring and packages :D + + ```bash + sudo pacman-key --init + sudo pacman -Sy archlinux-keyring + sudo pacman -Syu + ``` + Then just follow the Archlinux installation instructions +