Moved the part that writes brlapi stuff outside the sound if statement, not sure why it was there in the first place, I must have needed more coffee...

This commit is contained in:
stormdragon2976 2022-11-30 15:22:14 -05:00
parent a1d56cc0c0
commit b2fb488652

2
i38.sh
View File

@ -403,10 +403,10 @@ bindsym Escape mode "default"
# Auto start section # Auto start section
$(if [[ $sounds -eq 0 ]]; then $(if [[ $sounds -eq 0 ]]; then
echo "exec_always --no-startup-id ${i3Path}/scripts/sound.py" echo "exec_always --no-startup-id ${i3Path}/scripts/sound.py"
fi
if [[ $brlapi -eq 0 ]]; then if [[ $brlapi -eq 0 ]]; then
echo 'exec --no-startup-id xbrlapi --quiet' echo 'exec --no-startup-id xbrlapi --quiet'
fi fi
fi
if [[ -x "/usr/lib/notification-daemon-1.0/notification-daemon" ]]; then if [[ -x "/usr/lib/notification-daemon-1.0/notification-daemon" ]]; then
echo 'exec_always --no-startup-id /usr/lib/notification-daemon-1.0/notification-daemon -r' echo 'exec_always --no-startup-id /usr/lib/notification-daemon-1.0/notification-daemon -r'
fi fi