-
-
Notifications
You must be signed in to change notification settings - Fork 240
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
Layout symbol block dimensions are disproportionate #411
Comments
It does dynamically adjust the space according to the text it is going to display. What does your config look like? |
|
I think the extra space is coming from the horizpadbar variable |
I tried with your config and the only way I can reproduce that gap is if the layout symbol contains extra spaces like this: static const Layout layouts[] = {
/* symbol arrange function */
- { "T", tile }, /* first entry is default */
+ { "T ", tile }, /* first entry is default */
{ "F", NULL }, /* no layout function means floating behavior */
{ "M", monocle },
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Here is my screenshot,
Here, I am using the following modified symbols
T = tiling
F = floating
M = monocle
Issue here is that the layout symbol block has unnecessary padding to its right. Is there any way to make it such that dwm dynamically adjust the free space?
Regards
The text was updated successfully, but these errors were encountered: