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

Merge pull request #7 from konstantinblaesi/fix-install-flatpak

Fix flatpak detection in install.sh.
This commit is contained in:
Matteo Iervasi 2018-12-31 09:24:35 +01:00 committed by GitHub
commit 6d11727428
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,7 +2,7 @@
# This script automatically detect the PulseEffects presets directory and installs the presets
check_installation() {
if [[ $(flatpak list | grep -q "com.github.wwmm.pulseeffects") ]]; then
if flatpak list | grep -q "com.github.wwmm.pulseeffects"; then
PRESETS_DIRECTORY="$HOME/.var/app/com.github.wwmm.pulseeffects/config/PulseEffects"
elif [ -d "$HOME/.config/PulseEffects" ]; then
PRESETS_DIRECTORY="$HOME/.config/PulseEffects"