-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from chaosparrot/feature/parrot_modes
Feature/parrot modes
- Loading branch information
Showing
70 changed files
with
2,748 additions
and
351 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
tag: user.talon_hud_available | ||
tag: user.talon_hud_visible | ||
tag: user.talon_hud_choices_visible | ||
- | ||
[option] {user.talon_hud_choices}: user.hud_activate_choice(talon_hud_choices) | ||
option {user.talon_hud_numerical_choices}+$: user.hud_activate_choices(talon_hud_numerical_choices_list) | ||
|
||
# This allows for the text 'option one five four confirm' to make quick confirmation possible | ||
option {user.talon_hud_numerical_choices}+ {user.talon_hud_choices}$: | ||
user.hud_activate_choices(talon_hud_numerical_choices_list) | ||
user.hud_activate_choice(talon_hud_choices) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,34 @@ | ||
tag: user.talon_hud_available | ||
- | ||
# General HUD commands | ||
^head up (show|open)$: user.enable_hud() | ||
^head up theme dark$: user.switch_hud_theme("dark") | ||
^head up theme light$: user.switch_hud_theme("light") | ||
^head up (drop|stop|confirm)$: user.set_hud_setup_mode("*", "") | ||
^head up cancel$: user.set_hud_setup_mode("*", "cancel") | ||
^head up (hide|close)$: user.disable_hud() | ||
|
||
# Status bar commands | ||
^head up (show|open) status bar$: user.enable_hud_id("status_bar") | ||
^head up (hide|close) status bar$: user.disable_hud_id("status_bar") | ||
^head up resize status bar$: user.set_hud_setup_mode("status_bar", "dimension") | ||
^head up drag status bar$: user.set_hud_setup_mode("status_bar", "position") | ||
^head up basic status bar$: user.set_widget_preference("status_bar", "show_animations", 0) | ||
^head up fancy status bar$: user.set_widget_preference("status_bar", "show_animations", 1) | ||
^head up text scale status bar$: user.set_hud_setup_mode("status_bar", "font_size") | ||
^head up hide status bar on sleep$: user.set_widget_preference("status_bar", "sleep_enabled", 0) | ||
^head up show status bar on sleep$: user.set_widget_preference("status_bar", "sleep_enabled", 1) | ||
# Widget setup commands | ||
^head up (show|open) {user.talon_hud_widget_names}$: user.enable_hud_id(talon_hud_widget_names) | ||
^head up (hide|close) {user.talon_hud_widget_names}$: user.disable_hud_id(talon_hud_widget_names) | ||
^head up resize {user.talon_hud_widget_names}$: user.set_hud_setup_mode(talon_hud_widget_names, "dimension") | ||
^head up expand {user.talon_hud_widget_names}$: user.set_hud_setup_mode(talon_hud_widget_names, "limit") | ||
^head up text scale {user.talon_hud_widget_names}$: user.set_hud_setup_mode(talon_hud_widget_names, "font_size") | ||
^head up drag {user.talon_hud_widget_names}$: user.set_hud_setup_mode(talon_hud_widget_names, "position") | ||
^head up basic {user.talon_hud_widget_names}$: user.set_widget_preference(talon_hud_widget_names, "show_animations", 0) | ||
^head up fancy {user.talon_hud_widget_names}$: user.set_widget_preference(talon_hud_widget_names, "show_animations", 1) | ||
^head up hide {user.talon_hud_widget_names} on sleep$: user.set_widget_preference(talon_hud_widget_names, "sleep_enabled", 0) | ||
^head up show {user.talon_hud_widget_names} on sleep$: user.set_widget_preference(talon_hud_widget_names, "sleep_enabled", 1) | ||
^head up align {user.talon_hud_widget_names} right$: user.set_widget_preference(talon_hud_widget_names, "alignment", "right") | ||
^head up align {user.talon_hud_widget_names} left$: user.set_widget_preference(talon_hud_widget_names, "alignment", "left") | ||
^head up align {user.talon_hud_widget_names} top$: user.set_widget_preference(talon_hud_widget_names, "expand_direction", "down") | ||
^head up align {user.talon_hud_widget_names} bottom$: user.set_widget_preference(talon_hud_widget_names, "expand_direction", "up") | ||
|
||
# Event log commands | ||
^head up (show|open) event log$: user.enable_hud_id("event_log") | ||
^head up (hide|close) event log$: user.disable_hud_id("event_log") | ||
^head up resize event log$: user.set_hud_setup_mode("event_log", "dimension") | ||
^head up expand event log$: user.set_hud_setup_mode("event_log", "limit") | ||
^head up drag event log$: user.set_hud_setup_mode("event_log", "position") | ||
^head up text scale event log$: user.set_hud_setup_mode("event_log", "font_size") | ||
^head up align event log right$: user.set_widget_preference("event_log", "alignment", "right") | ||
^head up align event log left$: user.set_widget_preference("event_log", "alignment", "left") | ||
^head up align event log top$: user.set_widget_preference("event_log", "expand_direction", "down") | ||
^head up align event log bottom$: user.set_widget_preference("event_log", "expand_direction", "up") | ||
^head up basic event log$: user.set_widget_preference("event_log", "show_animations", 0) | ||
^head up fancy event log$: user.set_widget_preference("event_log", "show_animations", 1) | ||
# Widget content commands | ||
^{user.talon_hud_widget_names} (show|open)$: user.enable_hud_id(talon_hud_widget_names) | ||
^{user.talon_hud_widget_names} (hide|close)$: user.disable_hud_id(talon_hud_widget_names) | ||
^{user.talon_hud_widget_names} minimize$: user.set_widget_preference(talon_hud_widget_names, "minimized", 1) | ||
^{user.talon_hud_widget_names} maximize$: user.set_widget_preference(talon_hud_widget_names, "minimized", 0) | ||
^{user.talon_hud_widget_names} next: user.increase_widget_page(talon_hud_widget_names) | ||
^{user.talon_hud_widget_names} (back|previous): user.decrease_widget_page(talon_hud_widget_names) | ||
^{user.talon_hud_widget_names} options: user.hud_widget_options(talon_hud_widget_names) |
Oops, something went wrong.