14 lines
No EOL
318 B
Python
14 lines
No EOL
318 B
Python
from talon import Module, Context, actions, app
|
|
|
|
mod = Module()
|
|
|
|
|
|
@mod.action_class
|
|
class Actions:
|
|
def dental_click():
|
|
"""Responds to an alveolar click"""
|
|
app.notify("Dental click")
|
|
|
|
def postalveolar_click():
|
|
"""Responds to an postalveolar click"""
|
|
actions.core.repeat_phrase(1) |