X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/4ca808f3e3239e1bbdb24e28d0bee877791dfa77..528d51fbc2147d15183d1bf3c75cd19de7f2722b:/layout/uselessfair.lua?ds=sidebyside diff --git a/layout/uselessfair.lua b/layout/uselessfair.lua index 7499d91..6aa6666 100644 --- a/layout/uselessfair.lua +++ b/layout/uselessfair.lua @@ -71,20 +71,23 @@ local function fair(p, orientation) -- Top and left clients are shrinked by two steps and -- get moved away from the border. Other clients just -- get shrinked in one direction. + + gap_factor = (useless_gap / 100) * 2 + if this_x == 0 then - g.width = g.width - 2 * useless_gap + g.width = g.width - (2 + gap_factor) * useless_gap g.x = g.x + useless_gap else - g.width = g.width - useless_gap + g.width = g.width - (1 + gap_factor) * useless_gap end if this_y == 0 then - g.height = g.height - 2 * useless_gap + g.height = g.height - (2 + gap_factor) * useless_gap g.y = g.y + useless_gap else - g.height = g.height - useless_gap + g.height = g.height - (1 + gap_factor) * useless_gap end end -- End of useless gap.