46 lines
985 B
Python
46 lines
985 B
Python
from talon import ctrl, ui, Module, Context, actions, clip, app
|
|
|
|
ctx = Context()
|
|
mod = Module()
|
|
apps = mod.apps
|
|
apps.firefox = "app.name: Firefox"
|
|
apps.firefox = "app.name: firefox"
|
|
apps.firefox = """
|
|
os: windows
|
|
and app.name: Firefox
|
|
os: windows
|
|
and app.exe: firefox.exe
|
|
"""
|
|
apps.firefox = """
|
|
os: mac
|
|
and app.bundle: org.mozilla.firefox
|
|
"""
|
|
|
|
ctx.matches = r"""
|
|
app: firefox
|
|
"""
|
|
|
|
|
|
@ctx.action_class("user")
|
|
class user_actions:
|
|
def tab_jump(number: int):
|
|
if number < 9:
|
|
if app.platform == "mac":
|
|
actions.key("cmd-{}".format(number))
|
|
else:
|
|
actions.key("ctrl-{}".format(number))
|
|
|
|
def tab_final():
|
|
if app.platform == "mac":
|
|
actions.key("cmd-9")
|
|
else:
|
|
actions.key("ctrl-9")
|
|
|
|
|
|
@ctx.action_class("browser")
|
|
class browser_actions:
|
|
def go(url: str):
|
|
actions.browser.focus_address()
|
|
actions.sleep("50ms")
|
|
actions.insert(url)
|
|
actions.key("enter")
|