Ok, so it looks like CachyOS is Arch based, and it ships with the Pacman package manager, and Octopi, which is a graphical package manager.
Arch is designed for people who have a little more technical knowledge (or who aren’t afraid to learn via trial by fire). As a result, when you’re using Arch based distros, it’s generally much safer to use the command line interface (CLI) to install and uninstall packages, because the installation process is designed to be interactive, rather than fully automatic, so you might have to answer some questions to install something. Skipping these questions or letting some GUI package manager steamroll the process is a great way to bork your system. So feel free to use octopi, discover, pamac, etc. to discover software, but I wouldn’t use any of them to install anything myself.
Fundamentally, you’ll install audio plugins like you would any other software: through the package manager. I don’t know whether CachyOS gives you access to the regular Arch repos (which are massive) or not, so I don’t know what software you’ll have access to, but I can tell you some basics on using Pacman to manage software:
Search:
pacman -Ss package_name
Search installed:
pacman -Qs package_name
Install:
sudo pacman -S package_name
Uninstall:
sudo pacman -Runs package_name
I’d recommend reading up on Pacman on the Arch Wiki to understand what these flags do.
In terms of things to install, you could start by installing the Linux Studio Plugins suite. Use pacman -Ss lsp-plugins
to see your options, and then install whatever one you want using sudo pacman -S package-name
.
Again, I don’t know whether you’ll have access to everything here, but you can search packages on the Arch website. Check out the pro-audio section. Some other audio plugins to look for in the repos:
- calf
- cardinal
- carla
- geonkick
- surge-xt
If that’s not enough software for you, or if you need something specific that’s not in the repos, you can always install flatpaks, and/or enable the Arch User Repository (AUR) and install something like yay to help you install packages from there, but just know that the AUR is the wild west as everything there is user submitted.