mirror of
https://github.com/swaywm/sway.git
synced 2026-04-21 06:46:22 -04:00
Change focus_on_window_activation default to urgent
Before the default was "smart". This means a visible app could steal focus whenever it wanted to. This can be an issue since having focus allows for e.g. clipboard access. This commit changes the default to "urgent" instead. Closes: https://github.com/swaywm/sway/issues/5139
This commit is contained in:
parent
63e45bf321
commit
5e41e6600b
2 changed files with 2 additions and 1 deletions
|
|
@ -241,6 +241,7 @@ static void config_defaults(struct sway_config *config) {
|
|||
if (!(config->font = strdup("monospace 10"))) goto cleanup;
|
||||
config->font_height = 17; // height of monospace 10
|
||||
config->urgent_timeout = 500;
|
||||
config->focus_on_window_activation = FOWA_URGENT;
|
||||
config->popup_during_fullscreen = POPUP_SMART;
|
||||
config->xwayland = XWAYLAND_MODE_LAZY;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue