kranewl

A wlroots-based dynamic Wayland compositor, written in C++, configurable with Lua
git clone git://git.deurzen.net/kranewl
Log | Files | Refs | LICENSE

commit 4eff7980b85847981b403224e321b5e67aa5debb
parent ad3664a835920dd7519bb4914aa3a3e2aff2d3da
Author: deurzen <max@deurzen.net>
Date:   Fri,  1 Jul 2022 18:49:56 +0200

changes focus-follows-cursor default to false

Diffstat:
Msrc/kranewl/workspace.cc | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/kranewl/workspace.cc b/src/kranewl/workspace.cc @@ -33,7 +33,7 @@ Workspace::Workspace(Index index, std::string name, Context_ptr context) m_free_views({}, true), m_iconified_views({}, true), m_disowned_views({}, true), - m_focus_follows_cursor(true) + m_focus_follows_cursor(false) {} Workspace::~Workspace()