-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add window resize hints support #32
Conversation
I can't understand what does these hints actually do. The user always specifies how much should a windows change its size. So if windows resize hints are enabled, how much are windows actually resized? |
For example most (if not all?) terminals have some atom set that tells window managers to snap the size to their collum/row size weh resizing, that way the padding is always the same. So if a window does not have the atom set it will just resize normally with 1px "intervals" but when I resize my terminal that has a row height/width of ~7/14px it will do so in intervals of 7/14px, try resizing urxvt or st with resize hints enabled using xmrs for example. But yeah, this is especially useful/noticeable if you resize a window using xmrs btw. |
Yeah I see that it is much comfortable to use like that. But I think that resizing with increments shouldn't be handled by the |
But what if you use xmrs? xmrs (and many other tools) do not check for these hints. In fact I think it's actually the job of the window manager, openbox does it too like this. |
Oh, good point. Then, let the wm handle that. If a program wants
fine-grained control, then it can temporarily disable increments (to do:
perhaps implement mutexes someday).
I remember that i tested wmrs against your patch and growing windows didn't
work.
…On Thu, Jul 6, 2017, 00:34 Camille ***@***.***> wrote:
But what if you use xmrs? xmrs (and many other tools) do not check for
these hints. In fact I think it's actually the job of the window manager,
openbox does it too like this.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#32 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AKNZTFGo5KvIReJJHmdrGvftU0vrdCO9ks5sLAFzgaJpZM4OLarG>
.
|
actually is seems like |
probably because it snaps to the nearest size, which with 1 would almost always be the current size. for me |
seems legit |
I'm not exactly sure what:
are for, maybe they need to be:
I also didn't add a man page entry as of yet.