From a933da92e041f9179632edfcc0360409bfeed219 Mon Sep 17 00:00:00 2001 From: jackhack96 Date: Sat, 4 Sep 2021 19:05:32 +0200 Subject: [PATCH] Updated README and added preset --- README.md | 4 ++++ install.sh | 3 +++ 2 files changed, 7 insertions(+) diff --git a/README.md b/README.md index 6f8e088..a827620 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,10 @@ It currently contains: This preset is targeted for laptop speakers and tries to improve both lower and higher frequencies. It also tries to normalize the volumes in different medias like speech and music. More information can be found in [this](https://medium.com/@susuthapa19961227/trying-to-improve-audio-in-linux-with-pulseeffects-63f37ea5b320) blog. +5. **LoudnessEqualizer** + + This preset is targeted for laptop speakers to get clear voice locals and prevent dimming of sound when bass part gets played. More info can be found on [Digtalone1's github](https://github.com/Digitalone1/EasyEffects-Presets) + # Installation The `install.sh` script will try to install the presets automatically, just fire up a terminal and run the command: ```shell diff --git a/install.sh b/install.sh index 146add5..050978d 100755 --- a/install.sh +++ b/install.sh @@ -69,6 +69,9 @@ install_presets(){ sed -i 's/matteo/'"$USER"'/g' "$PRESETS_DIRECTORY/output/Perfect EQ.json" curl "$GIT_REPOSITORY/Bass%20Boosted.json" --output "$PRESETS_DIRECTORY/output/Bass Boosted.json" --silent sed -i 's/matteo/'"$USER"'/g' "$PRESETS_DIRECTORY/output/Bass Boosted.json" + echo "Installing Advanced Auto Gain..." + curl "$GIT_REPOSITORY/Advanced%20Auto%20Gain.json" --output "$PRESETS_DIRECTORY/output/Advanced Auto Gain.json" --silent + sed -i 's/matteo/'"$USER"'/g' "$PRESETS_DIRECTORY/output/Advanced Auto Gain.json" ;; 2) echo "Installing Perfect EQ preset..." curl "$GIT_REPOSITORY/Perfect%20EQ.json" --output "$PRESETS_DIRECTORY/output/Perfect EQ.json" --silent