Separate custom bindings from generic bindings

This commit is contained in:
crater2150 2016-04-04 14:54:30 +02:00
parent 6f0a85e0db
commit 6ec1f92bc9
9 changed files with 330 additions and 279 deletions

View file

@ -3,6 +3,7 @@ local awful = require("awful")
local tags = tags
local beautiful = require("beautiful")
local inspect=require("inspect")
local binder = binder or require("separable.binder")
local rule_screen = 1
@ -26,10 +27,10 @@ local function setup(self)
border_color = beautiful.border_normal,
focus = awful.client.focus.filter,
raise = true,
keys = clientkeys,
minimized = false,
size_hints_honor = false,
buttons = clientbuttons
keys = binder.client.keys(),
buttons = binder.client.buttons(),
},
-- print name and class of new windows for debugging purposes
callback = function(c)