diff options
author | Brian Ashworth <RedSoxFan@users.noreply.github.com> | 2018-07-20 21:46:56 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-20 21:46:56 -0400 |
commit | 51730a059778e1d91e2f4b412f39e77a66f48155 (patch) | |
tree | 1d043b7551e251f1b662e952e9f62be72877a7cc /include | |
parent | a2b2146f7fb8d5e868880daff9484145a68ab4a3 (diff) | |
parent | 37b33f92e8cd94984c4e3c8c851f5dfdacbe14f5 (diff) |
Merge pull request #2317 from RyanDwyer/force-display-urgency-hint
Implement force_display_urgency_hint
Diffstat (limited to 'include')
-rw-r--r-- | include/sway/commands.h | 1 | ||||
-rw-r--r-- | include/sway/config.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/include/sway/commands.h b/include/sway/commands.h index 1e93e2a3..e71a7228 100644 --- a/include/sway/commands.h +++ b/include/sway/commands.h @@ -113,6 +113,7 @@ sway_cmd cmd_focus_follows_mouse; sway_cmd cmd_focus_wrapping; sway_cmd cmd_font; sway_cmd cmd_for_window; +sway_cmd cmd_force_display_urgency_hint; sway_cmd cmd_force_focus_wrapping; sway_cmd cmd_fullscreen; sway_cmd cmd_gaps; diff --git a/include/sway/config.h b/include/sway/config.h index 6f6710e9..87768399 100644 --- a/include/sway/config.h +++ b/include/sway/config.h @@ -324,6 +324,7 @@ struct sway_config { char *font; size_t font_height; bool pango_markup; + size_t urgent_timeout; // Flags bool focus_follows_mouse; |