mirror of
https://github.com/swaywm/sway.git
synced 2026-04-27 06:46:25 -04:00
Try to incorporate touch in config
This commit is contained in:
parent
79f3cf88a7
commit
cb94176e27
6 changed files with 45 additions and 2 deletions
|
|
@ -185,6 +185,7 @@ sway_cmd cmd_titlebar_padding;
|
|||
sway_cmd cmd_unbindcode;
|
||||
sway_cmd cmd_unbindswitch;
|
||||
sway_cmd cmd_unbindsym;
|
||||
sway_cmd cmd_touch;
|
||||
sway_cmd cmd_unmark;
|
||||
sway_cmd cmd_urgent;
|
||||
sway_cmd cmd_workspace;
|
||||
|
|
|
|||
|
|
@ -54,6 +54,11 @@ struct sway_binding {
|
|||
char *command;
|
||||
};
|
||||
|
||||
struct sway_gesture_binding {
|
||||
struct libtouch_gesture *gesture;
|
||||
char *command;
|
||||
};
|
||||
|
||||
/**
|
||||
* A mouse binding and an associated command.
|
||||
*/
|
||||
|
|
@ -91,6 +96,7 @@ struct sway_mode {
|
|||
list_t *keycode_bindings;
|
||||
list_t *mouse_bindings;
|
||||
list_t *switch_bindings;
|
||||
list_t *gesture_bindings;
|
||||
bool pango;
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue