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 f2a502f446e9c1b8959da099ae77631c8ead9001
parent 1c45abe5e1bffc45f24f947552fc8725440d3447
Author: deurzen <max@deurzen.net>
Date:   Thu,  2 Jun 2022 08:55:48 +0200

defaults to focus-follows-cursor

Diffstat:
Minclude/kranewl/context.hh | 2+-
Minclude/kranewl/workspace.hh | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/kranewl/context.hh b/include/kranewl/context.hh @@ -18,7 +18,7 @@ public: mp_active(nullptr), mp_prev_active(nullptr), m_workspaces({}, true), - m_focus_follows_cursor(false) + m_focus_follows_cursor(true) {} Index diff --git a/include/kranewl/workspace.hh b/include/kranewl/workspace.hh @@ -21,7 +21,7 @@ public: m_free_views({}, true), m_iconified_views({}, true), m_disowned_views({}, true), - m_focus_follows_cursor(false) + m_focus_follows_cursor(true) {} bool empty() const;