Skip to content

Commit dfbbee4

Browse files
committed
Improve support for orca
1 parent 147bafb commit dfbbee4

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

bigbashview/usr/bin/bigbashview-orca

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
#!/usr/bin/env sh
22

3-
# if $1 is --enable start orca, if --disable stop orca
4-
53
if [ "$1" = "--enable" ]; then
64

75
# Autostart in GNOME
@@ -14,9 +12,10 @@ if [ "$1" = "--enable" ]; then
1412
kwriteconfig6 --file ~/.config/kaccessrc --group ScreenReader --key Enabled true 2> /dev/null
1513

1614
# Start orca
17-
exec orca
15+
exec orca &
16+
17+
elif [ "$1" = "--disable" ]; then
1818

19-
elif [ "$1" = "--disable" ];
2019
# Autostart in GNOME
2120
GSETTINGS_BACKEND=dconf gsettings set org.gnome.desktop.a11y.applications screen-reader-enabled false 2> /dev/null
2221

@@ -29,4 +28,4 @@ elif [ "$1" = "--disable" ];
2928
killall orca
3029
else
3130
echo $"Possible options: --enable or --disable"
32-
fi
31+
fi

0 commit comments

Comments
 (0)