Skip to content

Instantly share code, notes, and snippets.

@madmaximux
Last active March 20, 2025 19:11
Show Gist options
  • Select an option

  • Save madmaximux/b786b0650a9fe53327007aca22a0bf98 to your computer and use it in GitHub Desktop.

Select an option

Save madmaximux/b786b0650a9fe53327007aca22a0bf98 to your computer and use it in GitHub Desktop.
Anki Hands-Free with MacOS Voice Commands
on run {input, parameters}
activate application "Anki"
tell application "System Events"
keystroke 1
end tell
return input
end run
on run {input, parameters}
activate application "Anki"
tell application "System Events"
keystroke space
end tell
return input
end run
on run {input, parameters}
activate application "Anki"
tell application "System Events"
keystroke 4
end tell
return input
end run
on run {input, parameters}
activate application "Anki"
tell application "System Events"
keystroke 3
end tell
return input
end run
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