Disable focusing for "Onboard" on-screen keyboard

This commit is contained in:
Alexander Gehrke 2021-05-25 21:16:21 +00:00
parent 4ce1c25bb2
commit 87cf79a71a
2 changed files with 12 additions and 3 deletions

View file

@ -159,9 +159,14 @@ root.buttons(awful.util.table.join(
))
local clientbuttons = awful.util.table.join(
awful.button({ }, 1, function (c) client.focus = c; c:raise() end),
awful.button({ modkey }, 1, awful.mouse.client.move),
awful.button({ modkey }, 3, awful.mouse.client.resize))
awful.button({ }, 1, function (c)
if c.name ~= "Onboard" then
client.focus = c
c:raise()
end
end),
awful.button({ modkey }, 1, awful.mouse.client.move),
awful.button({ modkey }, 3, awful.mouse.client.resize))
binder.client = {}