dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

wake_up.talon (493B)


      1 #defines the commands that sleep/wake Talon
      2 mode: all
      3 -
      4 ^welcome back$:
      5     user.mouse_wake()
      6     user.history_enable()
      7     user.talon_mode()
      8 ^sleep all$:
      9     user.switcher_hide_running()
     10     user.history_disable()
     11     user.homophones_hide()
     12     user.help_hide()
     13     user.mouse_sleep()
     14     speech.disable()
     15     user.engine_sleep()
     16 ^talon sleep$:
     17     speech.disable()
     18     user.system_path_command('say "sleeping"')
     19 ^talon wake$:
     20     user.system_path_command('say "awake"')
     21     speech.enable()
     22