1
0
Fork 0
mirror of https://github.com/JackHack96/EasyEffects-Presets.git synced 2024-10-16 11:40:46 +00:00

Fixed wrong URL for install script

This commit is contained in:
Matteo Iervasi 2022-07-21 20:51:14 +02:00
parent a1e2e3bf8a
commit 87e8affc4b

View file

@ -1,10 +1,10 @@
#!/usr/bin/env bash
# This script automatically detect the EasyEffects presets directory and installs the presets
GIT_REPOSITORY="https://raw.githubusercontent.com/JackHack96/PulseEffects-Presets/master"
GIT_REPOSITORY="https://raw.githubusercontent.com/JackHack96/EasyEffects-Presets/master"
check_installation() {
if command -v flatpak &> /dev/null && flatpak list | grep -q "com.github.wwmm.easyeffects"; then
if command -v flatpak &>/dev/null && flatpak list | grep -q "com.github.wwmm.easyeffects"; then
PRESETS_DIRECTORY="$HOME/.var/app/com.github.wwmm.easyeffects/config/easyeffects"
elif which easyeffects >/dev/null; then
PRESETS_DIRECTORY="$HOME/.config/easyeffects"
@ -34,8 +34,7 @@ read_choice() {
done
}
install_menu(){
install_menu() {
echo "Please select an option for presets installation (Default=1)"
echo "1) Install all presets"
echo "2) Install Perfect EQ preset"
@ -44,9 +43,10 @@ install_menu(){
echo "5) Install Laptop speaker preset"
}
install_presets(){
install_presets() {
case $CHOICE in
1) echo "Installing Bass Enhancing + Perfect EQ preset..."
1)
echo "Installing Bass Enhancing + Perfect EQ preset..."
curl "$GIT_REPOSITORY/Bass%20Enhancing%20%2B%20Perfect%20EQ.json" --output "$PRESETS_DIRECTORY/output/Bass Enhancing + Perfect EQ.json" --silent
echo "Installing impulse response files..."
curl "$GIT_REPOSITORY/irs/Dolby%20ATMOS%20((128K%20MP3))%201.Default.irs" --output "$PRESETS_DIRECTORY/irs/Dolby ATMOS ((128K MP3)) 1.Default.irs" --silent
@ -78,10 +78,12 @@ install_presets(){
echo "Installing Laptop preset..."
curl "https://raw.githubusercontent.com/Digitalone1/EasyEffects-Presets/master/LoudnessEqualizerPE.json" --output "$PRESETS_DIRECTORY/output/Laptop.json" --silent
;;
2) echo "Installing Perfect EQ preset..."
2)
echo "Installing Perfect EQ preset..."
curl "$GIT_REPOSITORY/Perfect%20EQ.json" --output "$PRESETS_DIRECTORY/output/Perfect EQ.json" --silent
;;
3) echo "Installing Bass Enhancing + Perfect EQ preset..."
3)
echo "Installing Bass Enhancing + Perfect EQ preset..."
curl "$GIT_REPOSITORY/Bass%20Enhancing%20%2B%20Perfect%20EQ.json" --output "$PRESETS_DIRECTORY/output/Bass Enhancing + Perfect EQ.json" --silent
sed -i "s|<PRESETS_DIRECTORY>|$PRESETS_DIRECTORY|g" "$PRESETS_DIRECTORY/output/Bass Enhancing + Perfect EQ.json"
echo "Installing Boosted preset..."
@ -89,15 +91,17 @@ install_presets(){
curl "$GIT_REPOSITORY/Bass%20Boosted.json" --output "$PRESETS_DIRECTORY/output/Bass Boosted.json" --silent
sed -i "s|<PRESETS_DIRECTORY>|$PRESETS_DIRECTORY|g" "$PRESETS_DIRECTORY/output/Bass Boosted.json"
;;
4) echo "Installing Advanced Auto Gain..."
4)
echo "Installing Advanced Auto Gain..."
curl "$GIT_REPOSITORY/Advanced%20Auto%20Gain.json" --output "$PRESETS_DIRECTORY/output/Advanced Auto Gain.json" --silent
;;
5) echo "Installing Laptop preset..."
5)
echo "Installing Laptop preset..."
curl "https://raw.githubusercontent.com/Digitalone1/EasyEffects-Presets/master/LoudnessEqualizerPE.json" --output "$PRESETS_DIRECTORY/output/Laptop.json" --silent
;;
esac
}
check_installation