Bindings and cleanup

This commit is contained in:
Alexander Gehrke 2023-06-09 17:16:49 +02:00
parent ac8249a394
commit fb0c3ff086
4 changed files with 15 additions and 11 deletions

View file

@ -106,12 +106,9 @@ function binder.apply()
naughty.notify { text="Reloading key bindings" }
local allkeys = awful.util.table.clone(globalkeys)
for k,v in pairs(globalkeyfuncs) do
print("k:" .. k)
local loadedkeys = v()
print(inspect(loadedkeys))
allkeys = awful.util.table.join(allkeys, loadedkeys)
end
print(inspect(allkeys))
root.keys(allkeys)
end