Last active
March 20, 2025 19:11
-
-
Save madmaximux/b786b0650a9fe53327007aca22a0bf98 to your computer and use it in GitHub Desktop.
Anki Hands-Free with MacOS Voice Commands
This file contains hidden or 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
| on run {input, parameters} | |
| activate application "Anki" | |
| tell application "System Events" | |
| keystroke 1 | |
| end tell | |
| return input | |
| end run |
This file contains hidden or 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
| on run {input, parameters} | |
| activate application "Anki" | |
| tell application "System Events" | |
| keystroke space | |
| end tell | |
| return input | |
| end run |
This file contains hidden or 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
| on run {input, parameters} | |
| activate application "Anki" | |
| tell application "System Events" | |
| keystroke 4 | |
| end tell | |
| return input | |
| end run |
This file contains hidden or 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
| on run {input, parameters} | |
| activate application "Anki" | |
| tell application "System Events" | |
| keystroke 3 | |
| end tell | |
| return input | |
| end run |
This file contains hidden or 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
| on run {input, parameters} | |
| activate application "Anki" | |
| tell application "System Events" | |
| keystroke 2 | |
| end tell | |
| return input | |
| end run |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment