Add autostart for orca if user chooses dex for autostart.

This commit is contained in:
Storm Dragon 2022-11-23 17:53:07 -05:00
parent ae217c4333
commit 9733312634

3
i38.sh
View File

@ -161,6 +161,9 @@ dex=1
if command -v dex &> /dev/null ; then if command -v dex &> /dev/null ; then
export dex=$(yesno "Would you like to autostart applications with dex?") export dex=$(yesno "Would you like to autostart applications with dex?")
fi fi
if [[ $dex -eq 0 ]]; then
dex -t "${XDG_CONFIG_HOME:-${HOME}/.config}/autostart" -c $(command -v orca)
fi
brlapi=1 brlapi=1
if [[ $dex -eq 1 ]]; then if [[ $dex -eq 1 ]]; then
brlapi=$(yesno "Do you want to use a braille display with Orca?") brlapi=$(yesno "Do you want to use a braille display with Orca?")