Browse Source

PATCH: userscripts/Sounds.sh: for Non-FHS systems, use the runtime dir

on Non-FHS systems like NixOS, the system sounds are located
in /run/current-system/sw/share/sounds according to XDG specification
This patch allows the script to fallback to this directory if the
sound files are not found in /usr/share/sounds or $HOME/.local/share/sounds
pull/190/head
John Titor 2 years ago
parent
commit
cecd38e1cc
No known key found for this signature in database
GPG Key ID: 29B0514F4E3C1CC0
  1. 8
      config/hypr/UserScripts/Sounds.sh

8
config/hypr/UserScripts/Sounds.sh

@ -31,8 +31,12 @@ else
fi
# Set the directory defaults for system sounds.
if [ -d "/run/current-system/sw/share/sounds" ]; then
systemDIR="/run/current-system/sw/share/sounds" # NixOS
else
systemDIR="/usr/share/sounds"
fi
userDIR="$HOME/.local/share/sounds"
systemDIR="/usr/share/sounds"
defaultTheme="freedesktop"
# Prefer the user's theme, but use the system's if it doesn't exist.
@ -62,4 +66,4 @@ if ! test -f "$sound_file"; then
fi
fi
fi
pw-play "$sound_file"
pw-play "$sound_file"
Loading…
Cancel
Save