moved to personal fennel config for awesome and added qutebrowser
This commit is contained in:
parent
403cb92b7d
commit
688748f8a6
502 changed files with 8576 additions and 9597 deletions
30
awes2/configuration/client/buttons.lua
Normal file
30
awes2/configuration/client/buttons.lua
Normal file
|
@ -0,0 +1,30 @@
|
|||
local awful = require('awful')
|
||||
|
||||
local modkey = require('configuration.keys.mod').modKey
|
||||
|
||||
return awful.util.table.join(
|
||||
awful.button(
|
||||
{},
|
||||
1,
|
||||
function(c)
|
||||
_G.client.focus = c
|
||||
c:raise()
|
||||
end
|
||||
),
|
||||
awful.button({modkey}, 1, awful.mouse.client.move),
|
||||
awful.button({modkey}, 3, awful.mouse.client.resize),
|
||||
awful.button(
|
||||
{modkey},
|
||||
4,
|
||||
function()
|
||||
awful.layout.inc(1)
|
||||
end
|
||||
),
|
||||
awful.button(
|
||||
{modkey},
|
||||
5,
|
||||
function()
|
||||
awful.layout.inc(-1)
|
||||
end
|
||||
)
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue