Hyprscrolling: Navigating between fullscreen columns and non-fullscreen columns
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.
I ran into this same issue. It'd be really nice if maximized/fullscreen windows were properly supported.
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 ;)
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 :/