Hi,
If I correctly understand what you want, I think you should try a
tilebottom layout then adjust your master window size with Mod4+h/Mod4+l.
Then you can fix your settings in your rc.lua:
a snippet to a 0.75 ratio on all tags:

for s = 1, screen.count() do
    -- Each screen has its own tag table.
    tags[s] = awful.tag({ 1, 2, 3, 4 }, s, layouts[1])
    for t in ipairs(tags[s]) do
      awful.tag.setmwfact(0.75, tags[s][t])
    end
end

And then a rule to have one of your app being slave by default:
awful.rules.rules = {   .......    { rule = { class = "Vlc" }, callback =
awful.client.setslave }, .......}

Hope this helps

On Tue, Dec 4, 2012 at 8:46 PM, Manuel Kasser <[email protected]>wrote:

> Hi,
> I have a music-tag with a tile.top-layout (tile.bottom would work as
> well of course) and I usually use it with VLC Media Player at the top
> and a file manager in my music folder at the bottom. I want to have vlc
> set to a certain height when started on that tag, to be exact the
> minimal possible height for vlc to have just the play-and-so-on-buttons
> and the progressbar visible, and be at the top while still tiled.
> The file manager shall use the rest of the space below to choose music
> files.
>
> Unfortunately, I have no idea where to start. I read sth. about the
> geometry-field and a rule with callback, but that just seems to work
> with floating clients.
> I assume, another possbility would be to write an entirely new layout,
> which is possible, as far as I know, but I think that would be overkill
> (even though interesting) presuming there is a simpler solution.
>
> What would be the best solution for this?
>
> Thanks in advance,
> Manuel
>
> --
> To unsubscribe, send mail to [email protected].
>

Reply via email to