X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/f46ffb85e7e059d41d4f337f2451b2ef2fd524ad..274f3301a4f485b2af77e5935de8ae7567dfe6f4:/.config/awesome/rc.lua diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index e1fb38d..b2b49c3 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -541,7 +541,8 @@ awful.rules.rules = { buttons = clientbuttons, screen = awful.screen.preferred, placement = awful.placement.no_overlap+awful.placement.no_offscreen, - } + floating = true + }, }, -- Add titlebars to normal clients and dialogs @@ -563,19 +564,19 @@ awful.rules.rules = { }, callback = move_to_tag(screen.count(), screen.count() == 1 and 2 or 1) }, - { rule = { class = "Firefox" }, + { rule = { class = "Firefox", instance = "Navigator" }, properties = { floating = false, }, callback = move_to_tag(screen.count() == 1 and 1 or 2, 9) }, - { rule = { class = "Icedove" }, + { rule = { class = "Icedove", instance = "Mail" }, properties = { floating = false, }, callback = move_to_tag(screen.count() == 1 and 1 or 2, 8) }, - { rule = { class = "chromium" }, + { rule = { class = "chromium", instance = "chromium" }, properties = { floating = false, }, @@ -665,14 +666,6 @@ end) client.connect_signal("focus", function(c) c.border_color = beautiful.border_focus end) client.connect_signal("unfocus", function(c) c.border_color = beautiful.border_normal end) --- https://www.mail-archive.com/awesome@naquadah.org/msg08285.html -client.disconnect_signal("request::activate", awful.ewmh.activate) -client.connect_signal("request::activate", function(c, context, hints) - if c.class == "Firefox" and context == "ewmh" then - return - end - return awful.ewmh.activate(c, context, hints) -end) --- }}} +awful.ewmh.add_activate_filter(function(c) if c.class == "Firefox" then return false end end) -- vim:ft=lua:sw=4:sts=4:ts=4:et