aboutsummaryrefslogtreecommitdiffstats
path: root/config/hypr/UserScripts
diff options
context:
space:
mode:
authorJaKooLit <jimmielovejay@gmail.com>2024-04-29 08:24:48 +0900
committerJaKooLit <jimmielovejay@gmail.com>2024-04-29 08:25:06 +0900
commit5b40716ab9c1c3ca0d91185e00856245fc1f9ed4 (patch)
tree0b54ae61a989f8858a7b1e07fc863abdbee2c7ae /config/hypr/UserScripts
parent8d5df9d3702342e8b553ace5f1cc3c62ede4d600 (diff)
moving of Sounds.sh from UserScripts to scripts.
Diffstat (limited to 'config/hypr/UserScripts')
-rwxr-xr-xconfig/hypr/UserScripts/Sounds.sh69
1 files changed, 0 insertions, 69 deletions
diff --git a/config/hypr/UserScripts/Sounds.sh b/config/hypr/UserScripts/Sounds.sh
deleted file mode 100755
index fb8a1f57..00000000
--- a/config/hypr/UserScripts/Sounds.sh
+++ /dev/null
@@ -1,69 +0,0 @@
-#!/bin/bash
-# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ##
-# This script is used to play system sounds.
-
-theme="freedesktop" # Set the theme for the system sounds.
-mute=false # Set to true to mute the system sounds.
-
-# Mute individual sounds here.
-muteScreenshots=false
-muteVolume=false
-
-# Exit if the system sounds are muted.
-if [[ "$mute" = true ]]; then
- exit 0
-fi
-
-# Choose the sound to play.
-if [[ "$1" == "--screenshot" ]]; then
- if [[ "$muteScreenshots" = true ]]; then
- exit 0
- fi
- soundoption="screen-capture.*"
-elif [[ "$1" == "--volume" ]]; then
- if [[ "$muteVolume" = true ]]; then
- exit 0
- fi
- soundoption="audio-volume-change.*"
-else
- echo -e "Available sounds: --screenshot, --volume"
- exit 0
-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"
-defaultTheme="freedesktop"
-
-# Prefer the user's theme, but use the system's if it doesn't exist.
-sDIR="$systemDIR/$defaultTheme"
-if [ -d "$userDIR/$theme" ]; then
- sDIR="$userDIR/$theme"
-elif [ -d "$systemDIR/$theme" ]; then
- sDIR="$systemDIR/$theme"
-fi
-
-# Get the theme that it inherits.
-iTheme=$(cat "$sDIR/index.theme" | grep -i "inherits" | cut -d "=" -f 2)
-iDIR="$sDIR/../$iTheme"
-
-# Find the sound file and play it.
-sound_file=$(find $sDIR/stereo -name "$soundoption" -print -quit)
-if ! test -f "$sound_file"; then
- sound_file=$(find $iDIR/stereo -name "$soundoption" -print -quit)
- if ! test -f "$sound_file"; then
- sound_file=$(find $userDIR/$defaultTheme/stereo -name "$soundoption" -print -quit)
- if ! test -f "$sound_file"; then
- sound_file=$(find $systemDIR/$defaultTheme/stereo -name "$soundoption" -print -quit)
- if ! test -f "$sound_file"; then
- echo "Error: Sound file not found."
- exit 1
- fi
- fi
- fi
-fi
-pw-play "$sound_file" \ No newline at end of file
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage