Added login sound option, uses canberra-gtk-play if installed, if not doesn't ask.

This commit is contained in:
Jeremiah Ticket 2023-09-28 06:27:39 -06:00
parent cff7288c9e
commit 4d5abd5489
1 changed files with 8 additions and 0 deletions

8
i38.sh
View File

@ -366,6 +366,11 @@ brlapi=1
brlapi=$(yesno "Do you want to use a braille display with Orca?")
sounds=1
sounds=$(yesno "Do you want window event sounds?")
# Play Login Sound
loginSound=1
if command -v canberra-gtk-play &> /dev/null ; then
export loginSound=$(yesno "Would you like to play the default desktop-login sound according to your GTK sound theme upon login?")
fi
if [[ -d "${i3Path}" ]]; then
yesno "This will replace your existing configuration at ${i3Path}. Do you want to continue?" || exit 0
@ -602,6 +607,9 @@ cat << EOF >> ${i3Path}/config
$(if [[ $sounds -eq 0 ]]; then
echo "exec_always --no-startup-id ${i3Path}/scripts/sound.py"
fi
if [[ $loginSound -eq 0 ]]; then
echo 'exec --no-startup-id canberra-gtk-play -i desktop-login'
fi
if [[ $brlapi -eq 0 ]]; then
echo 'exec --no-startup-id xbrlapi --quiet'
fi