Hyprscrolling: (feat) Add togglefit command#498
Merged
vaxerski merged 4 commits intohyprwm:mainfrom Oct 6, 2025
Merged
Conversation
vaxerski
approved these changes
Oct 6, 2025
dskvr
pushed a commit
to sandwichfarm/hyprland-plugins
that referenced
this pull request
Oct 12, 2025
* Hyprscrolling: (feat) Add `togglefit` command * fix multi-workspaces bugs and focus change bug. * fix center to fitcol bug * remove "fullyvisible" logic to simplify the logic
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces a new dispatcher,
togglefit, for the scrolling layout.Description
The
togglefitdispatcher allows users to dynamically toggle theplugin:hyprscrolling:focus_fit_methodsetting betweencenter(value0) andfit(value1) without needing to reload the entire configuration.When called, the dispatcher:
focus_fit_methodsetting.fitmode, it fits the column that is currently in the center of the screen.centermode, it re-centers the first fully visible column (or the one at the center as a fallback).This provides a quick and convenient way to switch between focusing behaviors on the fly.
Closes #464.