hyprland-plugins icon indicating copy to clipboard operation
hyprland-plugins copied to clipboard

Hyprscrolling: Navigating between fullscreen columns and non-fullscreen columns

Open allanabiud opened this issue 3 months ago • 3 comments

Currently, when a window/column is fullscreen among other non-fulscreen windows/columns in a workspace, it’s not possible to move focus between them. It would be useful if the plugin allowed navigation between fullscreen columns and non-fullscreen ones.

allanabiud avatar Oct 11 '25 18:10 allanabiud

I ran into this same issue. It'd be really nice if maximized/fullscreen windows were properly supported.

nnra6864 avatar Oct 21 '25 07:10 nnra6864

For now the best solution I found for my case is to create a keybind with "colresize 1.0" and another one with "colresize 0.5" (or any value that fits the one you chose in your plugin.conf file) :

bind = $mainMod, F, layoutmsg, colresize 1.0
bind = $mainMod, G, layoutmsg, colresize 0.5

My plugin.conf :

# Hyprscrolling plugin

plugin {
    hyprscrolling {
        column_width = 0.5
        fullscreen_on_one_column = true
	focus_fit_method = 1
    }
}

This way, whenever I want to maximise a window, scrolling is still ok, and I can resize it to it's original size with the 2nd keybind. Haven't found a solution for "true" full screen apps like games though, but it's a start ;)

h4toms avatar Nov 03 '25 04:11 h4toms

Thanks for sharing. Major issue I see is windows not going back to their original size before maximizing. And well, as you mentioned, actual fullscreen apps are still problematic. Sadly, I feel like this would have to be fixed at the plugin level, not with a config :/

nnra6864 avatar Nov 03 '25 05:11 nnra6864