Perfect, setwmfact is exactly what I need! Apart from the fact, that I
don't need the for-loop, because it's just one tag with this special
layout. ;)

Thanks a lot! I'll then be trying out some new functions now! :D

Greetings,
Manuel




On 05.12.2012, 23:20, Mr.Magne wrote:
> 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


-- 
To unsubscribe, send mail to [email protected].

Reply via email to