mirror of
https://github.com/swaywm/sway.git
synced 2026-04-06 07:15:44 -04:00
commands: Add shortcuts_inhibitor command
Add a command to influence keyboard shortcuts inhibitors. In its current form it can be used to activate, deactivate or toggle an existing inhibitor on the surface currently receiving input. This can be used to define an escape shortcut such as: bindsym --inhibited $mod+Escape seat - shortcuts_inhibitor deactivate It also allows the user to configure a per-seat default of whether keyboard inhibitors are honoured by default (the default) or not. Using the activate/toggle command they can then enable the lingering inhibitor at a later time of their choosing. As a side effect this allows to specifically address a named seat for actions as well, whatever use-case that might serve. Signed-off-by: Michael Weiser <michael.weiser@gmx.de>
This commit is contained in:
parent
eeac0aa170
commit
3ee5aace33
8 changed files with 150 additions and 0 deletions
|
|
@ -30,6 +30,7 @@ struct seat_config *new_seat_config(const char* name) {
|
|||
}
|
||||
seat->hide_cursor_timeout = -1;
|
||||
seat->allow_constrain = CONSTRAIN_DEFAULT;
|
||||
seat->shortcuts_inhibit = SHORTCUTS_INHIBIT_DEFAULT;
|
||||
seat->keyboard_grouping = KEYBOARD_GROUP_DEFAULT;
|
||||
seat->xcursor_theme.name = NULL;
|
||||
seat->xcursor_theme.size = 24;
|
||||
|
|
@ -154,6 +155,10 @@ void merge_seat_config(struct seat_config *dest, struct seat_config *source) {
|
|||
dest->allow_constrain = source->allow_constrain;
|
||||
}
|
||||
|
||||
if (source->shortcuts_inhibit != SHORTCUTS_INHIBIT_DEFAULT) {
|
||||
dest->shortcuts_inhibit = source->shortcuts_inhibit;
|
||||
}
|
||||
|
||||
if (source->keyboard_grouping != KEYBOARD_GROUP_DEFAULT) {
|
||||
dest->keyboard_grouping = source->keyboard_grouping;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue