From ecdbf4974a8892ac37ded42ade4c911e021b99e5 Mon Sep 17 00:00:00 2001 From: Henro Veijer Date: Wed, 25 Feb 2026 20:34:59 +0100 Subject: [PATCH] Working on the proper config --- .../conf/desktop/hypr/hyprscrolling.conf | 28 +++++++++---------- 1 file changed, 13 insertions(+), 15 deletions(-) diff --git a/henrovnix_ok/assets/conf/desktop/hypr/hyprscrolling.conf b/henrovnix_ok/assets/conf/desktop/hypr/hyprscrolling.conf index 4604159e4..93fbd9f76 100644 --- a/henrovnix_ok/assets/conf/desktop/hypr/hyprscrolling.conf +++ b/henrovnix_ok/assets/conf/desktop/hypr/hyprscrolling.conf @@ -21,25 +21,23 @@ general { # -------------------------------------------------- # Scrolling layout configuration (documented on the Hyprland wiki) # -------------------------------------------------- -scrolling { - # Main behavior - column_width = 0.5 - fullscreen_on_one_column = true - # How the focused window is "fit" into view: - # 0/1/etc depends on your preference; keep what you had. - focus_fit_method = 1 +plugin { + hyprscrolling { + column_width = 0.5 + fullscreen_on_one_column = true - # Follow focus and keep a minimum visible part of adjacent columns - follow_focus = true - follow_min_visible = 0.4 + # 0 = center, 1 = fit (per docs/snippets) + focus_fit_method = 1 - # Optional: widths you can cycle through via `layoutmsg colresize +conf` - # (Uncomment if you want this feature) - # explicit_column_widths = 0.333, 0.5, 0.667, 1.0 + follow_focus = true + follow_min_visible = 0.4 - # Direction of scrolling / layout - direction = right + # optional + # explicit_column_widths = 0.333, 0.5, 0.667, 1.0 + + direction = right + } } # --------------------------------------------------