diff options
| author | KKV9 <ciaranob.cob@gmail.com> | 2024-01-28 20:33:42 +0000 |
|---|---|---|
| committer | KKV9 <ciaranob.cob@gmail.com> | 2024-01-28 20:33:42 +0000 |
| commit | 628364022eca36c2d02f13635c49b6c766622fea (patch) | |
| tree | 34dfd170d31025e914e306a0dbb50931168288ce /config/hypr/UserScripts/Sounds.sh | |
| parent | ed716d91bc6c4f5ebca9bbfb24ceba48137538cc (diff) | |
typo
Diffstat (limited to 'config/hypr/UserScripts/Sounds.sh')
| -rwxr-xr-x | config/hypr/UserScripts/Sounds.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/config/hypr/UserScripts/Sounds.sh b/config/hypr/UserScripts/Sounds.sh index 9aaafcf0..bc27c92c 100755 --- a/config/hypr/UserScripts/Sounds.sh +++ b/config/hypr/UserScripts/Sounds.sh @@ -3,20 +3,20 @@ # This script is used to play system sounds. theme="freedesktop" # Set the theme for the system sounds. -muted=false # Set to true to mute the system sounds. +mute=false # Set to true to mute the system sounds. # Mute individual sounds here. -mutedScreenshots=false +muteScreenshots=false muteVolume=false # Exit if the system sounds are muted. -if [[ "$muted" = true ]]; then +if [[ "$mute" = true ]]; then exit 0 fi # Choose the sound to play. if [[ "$1" == "--screenshot" ]]; then - if [[ "$mutedScreenshots" = true ]]; then + if [[ "$muteScreenshots" = true ]]; then exit 0 fi soundoption="screen-capture.*" |
