hotfixes
This commit is contained in:
parent
264032b182
commit
a5d56e2464
|
@ -19,6 +19,20 @@ awful.rules.rules = gears.table.join(awful.rules.rules, {
|
|||
end}
|
||||
},
|
||||
{ rule = { fullscreen = true },
|
||||
properties = {placement = awful.placement.centered}
|
||||
properties = {
|
||||
titlebars_enabled = false,
|
||||
floating = true,
|
||||
border_width = 0,
|
||||
border_color = 0,
|
||||
size_hints_honor = false,
|
||||
placement=awful.placement.no_offscreen
|
||||
},
|
||||
callback = function(c)
|
||||
gears.timer.delayed_call(function()
|
||||
if c.valid then
|
||||
c:geometry(c.screen.geometry)
|
||||
end
|
||||
end)
|
||||
end
|
||||
}
|
||||
})
|
||||
|
|
|
@ -248,8 +248,8 @@ return function(args)
|
|||
awesome.connect_signal("xdg::all_finished",function()
|
||||
for _,v in pairs(xdg.apps) do
|
||||
table.insert(pager.list,icon_cache:get(v.icon or beautiful.icon_default,v.name,v.exec))
|
||||
pager:update()
|
||||
end
|
||||
pager:update()
|
||||
end)
|
||||
return widget,icon
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue