We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 147bafb commit dfbbee4Copy full SHA for dfbbee4
bigbashview/usr/bin/bigbashview-orca
@@ -1,7 +1,5 @@
1
#!/usr/bin/env sh
2
3
-# if $1 is --enable start orca, if --disable stop orca
4
-
5
if [ "$1" = "--enable" ]; then
6
7
# Autostart in GNOME
@@ -14,9 +12,10 @@ if [ "$1" = "--enable" ]; then
14
12
kwriteconfig6 --file ~/.config/kaccessrc --group ScreenReader --key Enabled true 2> /dev/null
15
13
16
# Start orca
17
- exec orca
+ exec orca &
+
+elif [ "$1" = "--disable" ]; then
18
19
-elif [ "$1" = "--disable" ];
20
21
GSETTINGS_BACKEND=dconf gsettings set org.gnome.desktop.a11y.applications screen-reader-enabled false 2> /dev/null
22
@@ -29,4 +28,4 @@ elif [ "$1" = "--disable" ];
29
28
killall orca
30
else
31
echo $"Possible options: --enable or --disable"
32
-fi
+fi
0 commit comments