S or /

voice_control / basic_navigation_mac.talon

1# Basic navigation (macOS)2os: mac3-4next window:5    # help: Focus the next window of the current application6    key(cmd-`)7previous window:8    # help: Focus the previous window of the current application9    key(cmd-shift-`)1011hide {apps.running}:12    # help: Hide the application13    apps.focus(apps.running)14    sleep(0.5)15    app.hide()16hide [this] application:17    # help: Hide the currently focused application18    app.hide()1920toggle [the] dock:21    # help: Toggle Dock auto-hide22    key(symbolic_toggle_dock_autohide)2324next space:25    # help: Go to the next space (virtual desktop) in mission control26    key(symbolic_space_right)27previous space:28    # help: Go to the previous space (virtual desktop) in mission control29    key(symbolic_space_left)3031search spotlight for <phrase>:32    # help: Search for the text in Spotlight33    key(symbolic_spotlight_search_field)34    sleep(100ms)35    auto_insert(phrase)36    apps.focus("Spotlight")3738open siri | show siri | launch siri | switch to siri:39    # help: Start Siri40    apps.launch("/System/Library/CoreServices/Siri.app")