Hi!

I'm running under debian sid. So I have updated awesome to 3.4. I'm
trying to merge my old rc.lua with the new one. At the moment I just
have two problem :

- PROGRESSBAR and ticks and gaps :
  under 3.3, with widget({ type = "progressbar", ...) there were 3
interesting options : gap; ticks_count and ticks_gap. Is there any
chance to have them in the new progressbar ??? Thx a lot.


- TITLEBAR for floating apps:
I'm using awesome with awful.layout.suit.tile on all tags. But I have
some floating apps (gimp, dia, mplayer...). Under 3.3, I have add a
hooks in oder to create a titlebar for these floating apps :

-- Titlebar for floating app enabled.
if use_titlebar_floatapp then
-- Hook function to execute when the client is fullscreen or not.
  awful.hooks.property.register(function (c, prop)
    -- Remove the titlebar in fullscreen
    if c.fullscreen then
       awful.titlebar.remove(c)
    elseif not c.fullscreen and c.titlebar == nil then
      -- Re-Add a titlebar for the floating app no more in fullscreen
      local cls = c.class
      local inst = c.instance
      if floatapps[cls] or floatapps[inst] then
         awful.titlebar.add(c, { modkey = modkey })
      end
    end
  end)
end


These lines don't work anymore under 3.4. Is there way to have the same
behaviour under 3.4 ???

Thx a lot,
Best regards,
Guillaume


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

Reply via email to