26 lines
556 B
Lua
26 lines
556 B
Lua
local abutton = require "awful.button"
|
|
|
|
local modkey = "Mod4"
|
|
|
|
local mousebindings = {
|
|
abutton({}, 1, function(client)
|
|
client:activate {
|
|
context = "mouse_click",
|
|
}
|
|
end),
|
|
abutton({ modkey }, 1, function(client)
|
|
client:activate {
|
|
context = "mouse_click",
|
|
action = "mouse_move",
|
|
}
|
|
end),
|
|
abutton({ modkey }, 3, function(client)
|
|
client:activate {
|
|
context = "mouse_click",
|
|
action = "mouse_resize",
|
|
}
|
|
end),
|
|
}
|
|
|
|
return mousebindings
|