Results 41 to 50 of 62
Thread: Tiling Window Managers
|
Enjoy an ad free experience by logging in. Not a member yet? Register.
|
|
-
01-23-2013 #41Jay
New users, read this first.
New Member FAQ
Registered Linux User #463940
I do not respond to private messages asking for Linux help. Please keep it on the public boards.
-
01-23-2013 #42
- Join Date
- Dec 2011
- Location
- Turtle Island West
- Posts
- 602
Nah. Simple, yes. Elegant, no. It fails with term windows and multi view-pane stuff like gqview. But it does accomplish the goal I wanted.
Does anyone know how to NOT draw an exisiting window without destroying it?
-
01-23-2013 #43
- Join Date
- May 2004
- Location
- arch linux
- Posts
- 18,732
-
01-23-2013 #44
- Join Date
- Dec 2011
- Location
- Turtle Island West
- Posts
- 602
You're right, the fonts are a bit small, but I can fit 786,432 1x1 windows on every screen. So it makes up in quantitiy what it lacks in quality.
-
01-23-2013 #45
- Join Date
- Dec 2011
- Location
- Turtle Island West
- Posts
- 602
I figured out the simple AND elegant solution to the minimize issue:
1. add a boolean ishidden to the client struct and toggle it with ALT-F9.
2. if c->ishidden, XUnmap the window else XMap the window.
3. In the unmapnotify handler, check for ishidden, and just return if it's set.
This appears to do exactly what I want, without screwing up my term windows. There's a couple other tweaks to do yet, like change focus to the next window in the stack, and turning off ishidden if your trying to destroy a hidden window, stuff like that.
Much better than that that 1x1 pixel trick, and it cleans the PB&J prints off my source code
-
01-23-2013 #46
- Join Date
- May 2004
- Location
- arch linux
- Posts
- 18,732
-
01-25-2013 #47
- Join Date
- May 2004
- Location
- arch linux
- Posts
- 18,732
I'd really like to install Xmonad and play around with it some, but it has a number of Haskell dependencies and in the end it increases my overall system install size by quite a bit, so I've been avoiding it. Still, I've heard from some users that Xmonad is like the ultimate in tiling window managers. It's a pretty large package itself, when compared to the tiny size of DWM.
oz
-
01-26-2013 #48
- Join Date
- Dec 2011
- Location
- Turtle Island West
- Posts
- 602
I haven't recompiled dwm in 2 days, so I guess that means I have it tweaked just perfectly. I think it's a thing of beauty and I'm keeping it.
Hazel asked to see it, so here it is. All 34k of it. That includes my statusbar program, but not the monospace font. That comes from Inconsolata
-
01-28-2013 #49
- Join Date
- May 2004
- Location
- arch linux
- Posts
- 18,732
I don't currently have it installed but did install Inconsolata not too long back and really liked that font very much. I'll likely install it again in the near future.
At the moment, I'm running MonsterWM and still switching back and forth between it, DWM, and Awesome. At some point, I'm going to settle on one of the three as my default tiler. MonsterWM is the lightest of the bunch, but it does quite a lot for only 700 lines of code, and the lack of add-on features is what many of its fans like about it.oz
-
01-28-2013 #50
- Join Date
- May 2004
- Location
- arch linux
- Posts
- 18,732
For anyone that might be confused about tags vs workspaces in tiling window managers, I ran across this recent article giving some informative pointers and explanations regarding the differences:
dwm: Tags are not workspaces - wongdev.com
It takes a while to become accustomed to the way tilers handle windows but once you do so, you can begin to feel the power and benefits that they offer.oz