Add support for 8 and 9 mouse buttons#843
Open
githaff wants to merge 7 commits intobaskerville:masterfrom
Open
Add support for 8 and 9 mouse buttons#843githaff wants to merge 7 commits intobaskerville:masterfrom
githaff wants to merge 7 commits intobaskerville:masterfrom
Conversation
added 2 commits
September 6, 2018 20:56
Some mouses have additional buttons which can be conveniently used for window move/resize operations. Buttons 4-7 are skipped since they represent scroll events.
Unlike buttons 1-3 these two can be used solely for window resize/movement actions and so do not require modifier.
Author
|
The end game is to use mouse buttons 8 and 9 to resize and move windows without the need of touching a keyboard. So unlike buttons 1-3, these should work without the modifier. |
added 2 commits
May 29, 2019 23:55
This prevents pointer being centered on a node when the option is configured. It helps in case when xbanish only enables pointer following focus when the pointer is invisible. Which is needed to prevent 'caging' pointer on some modal dialog windows.
Split node vertically only when width exceed height of node hvsplit_ratio times.
Since gcc 10 compiler defaults to -fno-common. In bspwm it is fixed in master. Set flag explicitly to avoid pulling in changes from master.
Contributor
|
This pr does much more than what it says. Only 2 of the 7 commits deal with the topic. The others aren't even related. |
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.
Some mouses have additional buttons which can be conveniently used for window
move/resize operations. Buttons 4-7 are skipped since they represent scroll
events.