Ah, I didn't even think about it being maximized! That was exactly the case, and adding that snippet to the manage hook does just the trick. Thanks!
On Sun, Apr 19, 2009 at 2:41 PM, Gregor Best <[email protected]>wrote: > At Sun, 19 Apr 2009 14:28:34 -0700 > James Pearson wrote: > > > I noticed recently that Dolphin (the KDE file manager) is no longer > > respecting tiling layouts. Unfortunately, I cannot give an answer as to > > when this started, or even if it was with an upgrade to awesome or > dolphin > > (more likely). > > > > When it starts, it's fullscreen and floating. I cannot turn off > floating, > > as I can with other apps, and I can't resize it, like I can with other > > floating windows. New dolphin windows in the same tag are also > fullscreen. > > This behavior happens with the default rc.lua. This is dolphin 1.2.1 and > > awesome 3.2.1. > > > > This seems like something that's almost certainly dolphin's fault, but I > was > > hoping that I could get some details as to what would cause this > behavior, > > so that I can make a bug report. Any confirmation of this issue would > > certainly be nice, as well. > > > > Hitting Mod + m should solve that, at least for the currently running > session. > A more permanent solution is adding something like this to your manage > hook: > > if c.class == "dolphin" then > c.maximized_horizontal = false > c.maximized_vertical = false > end > > I don't know the class of dolphin, maybe you have to change it. > > -- > GCS/IT/M d- s+:- a--- C++ UL+++ US UB++ P+++ L+++ E--- W+ N+ o-- > K- w--- O M-- V PS+ PE- Y+ PGP+++ t+ 5 X+ R tv+ b++ DI+++ D+++ G+ > e- h! r y+ > > Gregor Best > -- James Pearson -- The best way to predict the future is to invent it. - Alan Kay -- GCS/MU d- s+:- a--- C++(++++)>$ ULC+(++)>$ P(+) L+++>++++$ !E W++(+++)$>$ N+(++) o? K-- w--- O? M--(+) V? PS+(--) PE++() Y+(++) PGP- !t !5 !X R- tv-(--) b+>+++ DI+(++) D G e>++ h- r y- [http://tinyurl.com/23uv8t]
