-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a95b465
commit 5bbdc74
Showing
2 changed files
with
31 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
( | ||
cd node_modules/@bocoup/macos-at-driver-server/MacOSATDriverServer/Build/Debug | ||
|
||
# Remove quarantine | ||
xattr -r -d com.apple.quarantine MacOSATDriverServer.app | ||
|
||
auval -v ausp atdg BOCU || true | ||
|
||
# Register extension | ||
/System/Library/Frameworks/CoreServices.framework/Versions/Current/Frameworks/LaunchServices.framework/Versions/Current/Support/lsregister \ | ||
-f -R -trusted MacOSATDriverServer.app | ||
|
||
auval -v ausp atdg BOCU || true | ||
) | ||
|
||
# Enable extension | ||
pluginkit -e use -i com.bocoup.MacOSATDriverServer.MacOSATDriverServerExtension | ||
|
||
auval -v ausp atdg BOCU || true | ||
|
||
defaults read com.apple.Accessibility SpeechVoiceIdentifierForLanguage || true | ||
|
||
# Set system voice | ||
defaults write com.apple.Accessibility SpeechVoiceIdentifierForLanguage '{2 = {en = "com.bocoup.MacOSATDriverServer.MacOSATDriverServerExtension.MacOSATDriverServerExtension";};}' | ||
|
||
auval -v ausp atdg BOCU || true |