49 lines
2.2 KiB
Lua
49 lines
2.2 KiB
Lua
local awful = require('awful')
|
|
|
|
local mod = require('binds.mod')
|
|
local modkey = mod.modkey
|
|
|
|
--- Client keybindings.
|
|
client.connect_signal('request::default_keybindings', function()
|
|
awful.keyboard.append_client_keybindings({
|
|
-- Client state management.
|
|
awful.key({ modkey, }, 'f',
|
|
function(c)
|
|
c.fullscreen = not c.fullscreen
|
|
c:raise()
|
|
end, { description = 'toggle fullscreen', group = 'client' }),
|
|
awful.key({ modkey, mod.shift }, 'c', function(c) c:kill() end,
|
|
{ description = 'close', group = 'client' }),
|
|
awful.key({ modkey, mod.ctrl }, 'space', awful.client.floating.toggle,
|
|
{ description = 'toggle floating', group = 'client' }),
|
|
awful.key({ modkey, }, 'n',
|
|
function(c)
|
|
-- The client currently has the input focus, so it cannot be
|
|
-- minimized, since minimized clients can't have the focus.
|
|
c.minimized = true
|
|
end, { description = 'minimize', group = 'client' }),
|
|
awful.key({ modkey, }, 'm',
|
|
function(c)
|
|
c.maximized = not c.maximized
|
|
c:raise()
|
|
end, { description = '(un)maximize', group = 'client' }),
|
|
awful.key({ modkey, mod.ctrl }, 'm',
|
|
function(c)
|
|
c.maximized_vertical = not c.maximized_vertical
|
|
c:raise()
|
|
end, { description = '(un)maximize vertically', group = 'client' }),
|
|
awful.key({ modkey, mod.shift }, 'm',
|
|
function(c)
|
|
c.maximized_horizontal = not c.maximized_horizontal
|
|
c:raise()
|
|
end, { description = '(un)maximize horizontally', group = 'client' }),
|
|
|
|
-- Client position in tiling management.
|
|
awful.key({ modkey, mod.ctrl }, 'Return', function(c) c:swap(awful.client.getmaster()) end,
|
|
{ description = 'move to master', group = 'client' }),
|
|
awful.key({ modkey, }, 'o', function(c) c:move_to_screen() end,
|
|
{ description = 'move to screen', group = 'client' }),
|
|
awful.key({ modkey, }, 't', function(c) c.ontop = not c.ontop end,
|
|
{ description = 'toggle keep on top', group = 'client' })
|
|
})
|
|
end)
|