Install Audacious on Manjaro Linux – Quick‑Start Guide
You’re looking to replace your clunky desktop player with something lean and fast, and you’ve heard Audacious can do that. In this post I’ll walk you through installing it on Manjaro without the fluff.
Why Audacious?
Audacious is a lightweight, open‑source audio player that keeps its focus on sound quality instead of flashy skins. If you’re tired of Windows Media Player’s endless background services or GNOME’s big media bar, Audacious fits right into a minimal setup. Plus, it ships with a built‑in tag editor and plugin support for equalizers.
Check if it’s Already There
Before you pull out your terminal, open a run dialog (Alt + F2) and type audacious. If it launches, you’re done—no installation required. Most Manjaro spins ship it by default in the community repo, but if you removed it or are on a minimal install, you’ll need to add it back.
Install from the Official Repository
The simplest route is to use pacman. Open a terminal and run:
sudo pacman -Syu audacious
- The -Syu combo updates everything first, preventing dependency clashes.
- Pacman will pull Audacious and any required libraries in one go.
If the command says “no such package,” you’ve probably disabled the community repo. Check /etc/pacman.conf for a commented #[community] line and uncomment it, then run the update again.
Grab the Latest from AUR (Optional)
Sometimes the official build is a few releases behind what the developers ship. If you want the newest features or bug fixes, use an AUR helper like yay or paru.
yay -S audacious-git
- The -git suffix pulls the bleeding‑edge source from GitHub.
- This might trigger a rebuild of dependencies; just let it finish.
I once upgraded to Audacious 3.8 on my Manjaro workstation and the new equalizer plugin finally worked after removing an old libasound version that conflicted with the AUR build.
Verify Codec Support
Audacious relies on system codecs to play formats like FLAC or OGG. After installation, try opening a file:
- If it doesn’t play, install libmad (MP3) or libflac:
sudo pacman -S libmad libflac
- For more exotic codecs (AAC, WMA), ffmpeg is the go‑to:
sudo pacman -S ffmpeg
Launch and Configure
Run audacious from your menu or terminal. The first launch will create a default config in ~/.config/audacious. If you’re migrating from another player, copy over your *.cue files or tag data to preserve playlists.
- Plugins: Open “Edit => Preferences” and toggle the equalizer, cross‑fade, or visualizer. Enable only what you need; each plugin adds a tiny bit of overhead.
- Keyboard Shortcuts: Press Ctrl + Space for a quick search across your library—no more scrolling through long lists.
Common Pitfalls
- Missing libasound2: Some minimal installs omit ALSA, causing Audacious to crash on start. Just install the package and you’re good.
- Stuck on “Loading…?”: This usually means a corrupted cache. Delete ~/.cache/audacious/ and restart.
That’s it—Audacious is up and running on your Manjaro box, ready for high‑quality listening without the bloat. Give it a spin, tweak the equalizer to your taste, and enjoy music that actually sounds good on a Linux desktop.