X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/92b0dbcca1d439abd293f0e53ad715d2e647da02..6d582aa93d08a6bcf1690bd102d51ab1e7fb3ef3:/.config/awesome/rc.lua?ds=sidebyside diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index dcbf52d..033bc86 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -670,6 +670,11 @@ awful.rules.rules = { floating = true, }, }, + { rule = { class = "Pinentry", instance = "pinentry" }, + properties = { + floating = true, + }, + }, } -- }}} @@ -745,7 +750,7 @@ client.connect_signal("focus", function(c) c.border_color = beautiful.border_foc client.connect_signal("unfocus", function(c) c.border_color = beautiful.border_normal end) awful.ewmh.add_activate_filter(function(c, context, hints) - if context == "ewmh" and c.class == "Firefox-esr" or c.class == "Firefox" then return false end + if context == "ewmh" and (c.class == "Firefox-esr" or c.class == "Firefox") then return false end end) -- vim:ft=lua:sw=4:sts=4:ts=4:et