Skip to content

Instantly share code, notes, and snippets.

@meetnick
Last active December 29, 2021 23:09
Show Gist options
  • Save meetnick/3984c3f81426103de71d7423bd3f1a20 to your computer and use it in GitHub Desktop.
Save meetnick/3984c3f81426103de71d7423bd3f1a20 to your computer and use it in GitHub Desktop.
Improve Ubuntu audio quality
#!/bin/bash
# install pulseeffects
sudo apt-get install pulseeffects lsp-plugins -y
# run pulseeffects and reset to its defaults
pulseeffects -r &
#
# 1) Install all presets
# 2) Install Perfect EQ preset
# 3) Install all bass boosting presets
# 4) Install Advanced Auto Gain
# 5) Install Laptop speaker preset
printf '1' | bash -c "$(curl -fsSL https://raw.githubusercontent.com/JackHack96/PulseEffects-Presets/pulseeffects/install.sh)"
# Install Advanced Auto Gain
printf '4' | bash -c "$(curl -fsSL https://raw.githubusercontent.com/JackHack96/PulseEffects-Presets/pulseeffects/install.sh)"
# Install laptop speaker preset
printf '5' | bash -c "$(curl -fsSL https://raw.githubusercontent.com/JackHack96/PulseEffects-Presets/pulseeffects/install.sh)"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment