aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/sway/config.h8
-rw-r--r--sway/commands/focus_follows_mouse.c11
-rw-r--r--sway/config.c2
-rw-r--r--sway/input/cursor.c8
4 files changed, 22 insertions, 7 deletions
diff --git a/include/sway/config.h b/include/sway/config.h
index 852d5576..0912bc73 100644
--- a/include/sway/config.h
+++ b/include/sway/config.h
@@ -327,6 +327,12 @@ struct ipc_policy {
uint32_t features;
};
+enum focus_follows_mouse_mode {
+ FOLLOWS_NO,
+ FOLLOWS_YES,
+ FOLLOWS_ALWAYS
+};
+
enum focus_wrapping_mode {
WRAP_NO,
WRAP_YES,
@@ -378,7 +384,7 @@ struct sway_config {
enum sway_popup_during_fullscreen popup_during_fullscreen;
// Flags
- bool focus_follows_mouse;
+ enum focus_follows_mouse_mode focus_follows_mouse;
enum mouse_warping_mode mouse_warping;
enum focus_wrapping_mode focus_wrapping;
bool active;
diff --git a/sway/commands/focus_follows_mouse.c b/sway/commands/focus_follows_mouse.c
index 0b0e334c..d0d2cb8a 100644
--- a/sway/commands/focus_follows_mouse.c
+++ b/sway/commands/focus_follows_mouse.c
@@ -7,8 +7,15 @@ struct cmd_results *cmd_focus_follows_mouse(int argc, char **argv) {
struct cmd_results *error = NULL;
if ((error = checkarg(argc, "focus_follows_mouse", EXPECTED_EQUAL_TO, 1))) {
return error;
+ } else if(strcmp(argv[0], "no") == 0) {
+ config->focus_follows_mouse = FOLLOWS_NO;
+ } else if(strcmp(argv[0], "yes") == 0) {
+ config->focus_follows_mouse = FOLLOWS_YES;
+ } else if(strcmp(argv[0], "always") == 0) {
+ config->focus_follows_mouse = FOLLOWS_ALWAYS;
+ } else {
+ return cmd_results_new(CMD_FAILURE, "focus_follows_mouse",
+ "Expected 'focus_follows_mouse no|yes|always'");
}
- config->focus_follows_mouse =
- parse_boolean(argv[0], config->focus_follows_mouse);
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
}
diff --git a/sway/config.c b/sway/config.c
index 7ef3ef38..64653024 100644
--- a/sway/config.c
+++ b/sway/config.c
@@ -220,7 +220,7 @@ static void config_defaults(struct sway_config *config) {
config->floating_minimum_height = 50;
// Flags
- config->focus_follows_mouse = true;
+ config->focus_follows_mouse = FOLLOWS_YES;
config->mouse_warping = WARP_OUTPUT;
config->focus_wrapping = WRAP_YES;
config->validating = false;
diff --git a/sway/input/cursor.c b/sway/input/cursor.c
index c539df40..62cdba37 100644
--- a/sway/input/cursor.c
+++ b/sway/input/cursor.c
@@ -637,7 +637,8 @@ void cursor_send_pointer_motion(struct sway_cursor *cursor,
cursor->previous.y = cursor->cursor->y;
cursor->previous.node = node;
- if (node && config->focus_follows_mouse) {
+ if (node && (config->focus_follows_mouse == FOLLOWS_YES ||
+ config->focus_follows_mouse == FOLLOWS_ALWAYS)) {
struct sway_node *focus = seat_get_focus(seat);
if (focus && node->type == N_WORKSPACE) {
// Only follow the mouse if it would move to a new output
@@ -652,9 +653,10 @@ void cursor_send_pointer_motion(struct sway_cursor *cursor,
// - cursor is over a new view, i.e. entered a new window; and
// - the new view is visible, i.e. not hidden in a stack or tab; and
// - the seat does not have a keyboard grab
- if (!wlr_seat_keyboard_has_grab(cursor->seat->wlr_seat) &&
+ if ((!wlr_seat_keyboard_has_grab(cursor->seat->wlr_seat) &&
node != prev_node &&
- view_is_visible(node->sway_container->view)) {
+ view_is_visible(node->sway_container->view)) ||
+ config->focus_follows_mouse == FOLLOWS_ALWAYS) {
seat_set_focus(seat, node);
} else {
struct sway_node *next_focus =