382 lines
12 KiB
Lua
382 lines
12 KiB
Lua
require('awful.autofocus')
|
|
local awful = require('awful')
|
|
local beautiful = require('beautiful')
|
|
local hotkeys_popup = require('awful.hotkeys_popup').widget
|
|
local modkey = require('configuration.keys.mod').modKey
|
|
local altkey = require('configuration.keys.mod').altKey
|
|
local apps = require('configuration.apps')
|
|
local dpi = require('beautiful').xresources.apply_dpi
|
|
local theme = require('theme')
|
|
|
|
-- Key bindings
|
|
local globalKeys = awful.util.table.join( -- Hotkeys
|
|
awful.key({modkey}, 'h', hotkeys_popup.show_help, {
|
|
description = 'show help',
|
|
group = 'awesome'
|
|
}), awful.key({modkey}, 'F1', hotkeys_popup.show_help, {
|
|
description = 'show help',
|
|
group = 'awesome'
|
|
}), -- Tag browsing
|
|
awful.key({modkey}, 'Left', function()
|
|
awful.tag.viewprev()
|
|
_G._splash_to_current_tag()
|
|
end, {
|
|
description = 'go to previous workspace',
|
|
group = 'tag'
|
|
}), awful.key({modkey}, 'Right', function()
|
|
awful.tag.viewnext()
|
|
_G._splash_to_current_tag()
|
|
end, {
|
|
description = 'go to next workspace',
|
|
group = 'tag'
|
|
}), awful.key({modkey}, 'Escape', function()
|
|
awful.tag.history.restore()
|
|
_G._splash_to_current_tag()
|
|
end, {
|
|
description = 'go back',
|
|
group = 'tag'
|
|
}), -- Default client focus
|
|
awful.key({modkey}, 'd', function()
|
|
awful.client.focus.byidx(1)
|
|
end, {
|
|
description = 'focus next by index',
|
|
group = 'client'
|
|
}), awful.key({modkey}, 'a', function()
|
|
awful.client.focus.byidx(-1)
|
|
end, {
|
|
description = 'focus previous by index',
|
|
group = 'client'
|
|
}), awful.key({modkey}, 'r', function()
|
|
_G.awesome.spawn(apps.default.rofi)
|
|
end, {
|
|
description = 'show rofi menu',
|
|
group = 'awesome'
|
|
}), awful.key({modkey}, 'u', function()
|
|
awful.client.urgent.jumpto()
|
|
_G._splash_to_current_tag()
|
|
end, {
|
|
description = 'jump to urgent client',
|
|
group = 'client'
|
|
}), awful.key({altkey}, 'Tab', function()
|
|
awful.client.focus.byidx(1)
|
|
if _G.client.focus then
|
|
_G.client.focus:raise()
|
|
end
|
|
end, {
|
|
description = 'switch to next window',
|
|
group = 'client'
|
|
}), awful.key({modkey}, 'm', function()
|
|
focus = not _G.client.focus
|
|
if not focus then
|
|
_G.client.focus.minimized = true
|
|
else
|
|
for _, c in ipairs(mouse.screen.selected_tag:clients()) do
|
|
c.minimized = false
|
|
end
|
|
end
|
|
end, {
|
|
description = 'minimize window in focus / unminimize all',
|
|
group = 'client'
|
|
}), awful.key({altkey, 'Shift'}, 'Tab', function()
|
|
awful.client.focus.byidx(-1)
|
|
if _G.client.focus then
|
|
_G.client.focus:raise()
|
|
end
|
|
end, {
|
|
description = 'switch to previous window',
|
|
group = 'client'
|
|
}), awful.key({modkey}, 'l', function()
|
|
awful.spawn(apps.default.lock)
|
|
end, {
|
|
description = 'lock the screen',
|
|
group = 'awesome'
|
|
}), awful.key({'Control', 'Shift'}, 'Print', function()
|
|
awful.util.spawn_with_shell(apps.default.delayed_screenshot)
|
|
end, {
|
|
description = 'mark an area and screenshot it (clipboard)',
|
|
group = 'screenshots (clipboard)'
|
|
}), awful.key({altkey}, 'Print', function()
|
|
awful.util.spawn_with_shell(apps.default.screenshot)
|
|
end, {
|
|
description = 'take a screenshot of your active monitor and copy it to clipboard',
|
|
group = 'screenshots (clipboard)'
|
|
}), awful.key({'Control'}, 'Print', function()
|
|
awful.util.spawn_with_shell(apps.default.region_screenshot)
|
|
end, {
|
|
description = 'mark an area and screenshot it to your clipboard',
|
|
group = 'screenshots (clipboard)'
|
|
}), awful.key({modkey}, 'c', function()
|
|
awful.util.spawn(apps.default.editor)
|
|
end, {
|
|
description = 'open a text/code editor',
|
|
group = 'launcher'
|
|
}), awful.key({modkey}, 'b', function()
|
|
awful.util.spawn(apps.default.browser)
|
|
end, {
|
|
description = 'open a browser',
|
|
group = 'launcher'
|
|
}), awful.key({modkey}, 'Return', function()
|
|
awful.util.spawn_with_shell(apps.default.terminal)
|
|
end, {
|
|
description = 'open a terminal',
|
|
group = 'launcher'
|
|
}), awful.key({modkey, 'Control'}, 'r', _G.awesome.restart, {
|
|
description = 'reload awesome',
|
|
group = 'awesome'
|
|
}), awful.key({modkey, 'Control'}, 'q', _G.awesome.quit, {
|
|
description = 'quit awesome',
|
|
group = 'awesome'
|
|
}), awful.key({modkey, 'Shift'}, 'g', function(t)
|
|
t = t or awful.screen.focused().selected_tag
|
|
local current_gap = t.gap
|
|
local new_gap
|
|
if current_gap == 0 then
|
|
new_gap = beautiful.gaps
|
|
else
|
|
new_gap = 0
|
|
end
|
|
t.gap = new_gap
|
|
end, {
|
|
description = 'toggle gaps',
|
|
group = 'awesome'
|
|
}), awful.key({modkey}, 'p', function()
|
|
awful.util.spawn_with_shell(apps.default.power_command)
|
|
end, {
|
|
description = 'end session menu',
|
|
group = 'awesome'
|
|
}), awful.key({altkey, 'Shift'}, 'Right', function()
|
|
awful.tag.incmwfact(0.05)
|
|
end, {
|
|
description = 'increase master width factor',
|
|
group = 'layout'
|
|
}), awful.key({altkey, 'Shift'}, 'Left', function()
|
|
awful.tag.incmwfact(-0.05)
|
|
end, {
|
|
description = 'decrease master width factor',
|
|
group = 'layout'
|
|
}), awful.key({altkey, 'Shift'}, 'Down', function()
|
|
awful.client.incwfact(0.05)
|
|
end, {
|
|
description = 'decrease master height factor',
|
|
group = 'layout'
|
|
}), awful.key({altkey, 'Shift'}, 'Up', function()
|
|
awful.client.incwfact(-0.05)
|
|
end, {
|
|
description = 'increase master height factor',
|
|
group = 'layout'
|
|
}), awful.key({modkey, 'Shift'}, 'Left', function()
|
|
awful.tag.incnmaster(1, nil, true)
|
|
end, {
|
|
description = 'increase the number of master clients',
|
|
group = 'layout'
|
|
}), awful.key({modkey, 'Shift'}, 'Right', function()
|
|
awful.tag.incnmaster(-1, nil, true)
|
|
end, {
|
|
description = 'decrease the number of master clients',
|
|
group = 'layout'
|
|
}), awful.key({modkey, 'Control'}, 'Left', function()
|
|
awful.tag.incncol(1, nil, true)
|
|
end, {
|
|
description = 'increase the number of columns',
|
|
group = 'layout'
|
|
}), awful.key({modkey, 'Control'}, 'Right', function()
|
|
awful.tag.incncol(-1, nil, true)
|
|
end, {
|
|
description = 'decrease the number of columns',
|
|
group = 'layout'
|
|
}), awful.key({modkey}, 'space', function()
|
|
awful.layout.inc(1)
|
|
end, {
|
|
description = 'select next layout',
|
|
group = 'layout'
|
|
}), awful.key({modkey, 'Shift'}, 'space', function()
|
|
awful.layout.inc(-1)
|
|
end, {
|
|
description = 'select previous layout',
|
|
group = 'layout'
|
|
}), awful.key({altkey, 'Shift'}, 'l', function()
|
|
awful.tag.incmwfact(0.05)
|
|
end, {
|
|
description = 'increase master width factor',
|
|
group = 'layout'
|
|
}), awful.key({altkey, 'Shift'}, 'h', function()
|
|
awful.tag.incmwfact(-0.05)
|
|
end, {
|
|
description = 'decrease master width factor',
|
|
group = 'layout'
|
|
}), awful.key({altkey, 'Shift'}, 'j', function()
|
|
awful.client.incwfact(0.05)
|
|
end, {
|
|
description = 'decrease master height factor',
|
|
group = 'layout'
|
|
}), awful.key({altkey, 'Shift'}, 'k', function()
|
|
awful.client.incwfact(-0.05)
|
|
end, {
|
|
description = 'increase master height factor',
|
|
group = 'layout'
|
|
}), awful.key({modkey, 'Shift'}, 'h', function()
|
|
awful.tag.incnmaster(1, nil, true)
|
|
end, {
|
|
description = 'increase the number of master clients',
|
|
group = 'layout'
|
|
}), awful.key({modkey, 'Shift'}, 'l', function()
|
|
awful.tag.incnmaster(-1, nil, true)
|
|
end, {
|
|
description = 'decrease the number of master clients',
|
|
group = 'layout'
|
|
}), awful.key({modkey, 'Control'}, 'h', function()
|
|
awful.tag.incncol(1, nil, true)
|
|
end, {
|
|
description = 'increase the number of columns',
|
|
group = 'layout'
|
|
}), awful.key({modkey, 'Control'}, 'l', function()
|
|
awful.tag.incncol(-1, nil, true)
|
|
end, {
|
|
description = 'decrease the number of columns',
|
|
group = 'layout'
|
|
}), awful.key({modkey, 'Control'}, 'n', function()
|
|
local c = awful.client.restore()
|
|
-- Focus restored client
|
|
if c then
|
|
_G.client.focus = c
|
|
c:raise()
|
|
end
|
|
end, {
|
|
description = 'restore minimized',
|
|
group = 'client'
|
|
}), awful.key({modkey}, 'k', function()
|
|
_G.toggle_splash()
|
|
end, {
|
|
description = 'toggle splash terminal',
|
|
group = 'launcher'
|
|
}), awful.key({modkey}, 'j', function()
|
|
_G.toggle_splash_height()
|
|
end, {
|
|
description = 'toggle splash terminal height',
|
|
group = 'launcher'
|
|
}), awful.key({}, 'XF86MonBrightnessUp', function()
|
|
awful.spawn('xbacklight -inc 10')
|
|
end, {
|
|
description = '+10%',
|
|
group = 'hotkeys'
|
|
}), awful.key({}, 'XF86MonBrightnessDown', function()
|
|
awful.spawn('xbacklight -dec 10')
|
|
end, {
|
|
description = '-10%',
|
|
group = 'hotkeys'
|
|
}), -- ALSA volume control
|
|
awful.key({altkey}, 'k', function()
|
|
awful.spawn.easy_async('amixer -D pulse sset Master 5%+', function()
|
|
_G.update_volume()
|
|
end)
|
|
end, {
|
|
description = 'volume up',
|
|
group = 'hotkeys'
|
|
}), awful.key({}, 'XF86AudioRaiseVolume', function()
|
|
awful.spawn.easy_async('amixer -D pulse sset Master 5%+', function()
|
|
_G.update_volume()
|
|
end)
|
|
end, {
|
|
description = 'volume up',
|
|
group = 'hotkeys'
|
|
}), awful.key({}, 'XF86AudioLowerVolume', function()
|
|
awful.spawn.easy_async('amixer -D pulse sset Master 5%-', function()
|
|
_G.update_volume()
|
|
end)
|
|
end, {
|
|
description = 'volume down',
|
|
group = 'hotkeys'
|
|
}), awful.key({altkey}, 'j', function()
|
|
awful.spawn.easy_async('amixer -D pulse sset Master 5%-', function()
|
|
_G.update_volume()
|
|
end)
|
|
end, {
|
|
description = 'volume down',
|
|
group = 'hotkeys'
|
|
}), awful.key({altkey}, 'm', function()
|
|
awful.spawn('amixer -D pulse set Master 1+ toggle')
|
|
_G.update_volume()
|
|
end, {
|
|
description = 'toggle mute',
|
|
group = 'hotkeys'
|
|
}), awful.key({}, 'XF86AudioMute', function()
|
|
awful.spawn('amixer -D pulse set Master 1+ toggle')
|
|
_G.update_volume()
|
|
end, {
|
|
description = 'toggle mute',
|
|
group = 'hotkeys'
|
|
}), awful.key({modkey}, 'o', awful.client.movetoscreen, {
|
|
description = 'move window to next screen',
|
|
group = 'client'
|
|
}), awful.key({modkey}, 'n', function()
|
|
awful.spawn(awful.screen.focused().selected_tag.defaultApp, {
|
|
tag = _G.mouse.screen.selected_tag,
|
|
placement = awful.placement.bottom_right
|
|
})
|
|
end, {
|
|
description = 'open default program for tag/workspace',
|
|
group = 'tag'
|
|
}), awful.key({'Control', altkey}, 'space', function()
|
|
awful.util.spawn_with_shell('vm-attach attach')
|
|
end))
|
|
|
|
-- Bind all key numbers to tags.
|
|
-- Be careful: we use keycodes to make it works on any keyboard layout.
|
|
-- This should map on the top row of your keyboard, usually 1 to 9.
|
|
for i = 1, 9 do
|
|
-- Hack to only show tags 1 and 9 in the shortcut window (mod+s)
|
|
local descr_view, descr_toggle, descr_move, descr_toggle_focus
|
|
if i == 1 or i == 9 then
|
|
descr_view = {
|
|
description = 'view tag #',
|
|
group = 'tag'
|
|
}
|
|
descr_toggle = {
|
|
description = 'toggle tag #',
|
|
group = 'tag'
|
|
}
|
|
descr_move = {
|
|
description = 'move focused client to tag #',
|
|
group = 'tag'
|
|
}
|
|
descr_toggle_focus = {
|
|
description = 'toggle focused client on tag #',
|
|
group = 'tag'
|
|
}
|
|
end
|
|
globalKeys = awful.util.table.join(globalKeys, -- View tag only.
|
|
awful.key({modkey}, '#' .. i + 9, function()
|
|
local screen = awful.screen.focused()
|
|
local tag = screen.tags[i]
|
|
if tag then
|
|
tag:view_only()
|
|
_G._splash_to_current_tag()
|
|
end
|
|
end, descr_view), -- Toggle tag display.
|
|
awful.key({modkey, 'Control'}, '#' .. i + 9, function()
|
|
local screen = awful.screen.focused()
|
|
local tag = screen.tags[i]
|
|
if tag then
|
|
awful.tag.viewtoggle(tag)
|
|
end
|
|
end, descr_toggle), -- Move client to tag.
|
|
awful.key({modkey, 'Shift'}, '#' .. i + 9, function()
|
|
if _G.client.focus then
|
|
local tag = _G.client.focus.screen.tags[i]
|
|
if tag then
|
|
_G.client.focus:move_to_tag(tag)
|
|
end
|
|
end
|
|
end, descr_move), -- Toggle tag on focused client.
|
|
awful.key({modkey, 'Control', 'Shift'}, '#' .. i + 9, function()
|
|
if _G.client.focus then
|
|
local tag = _G.client.focus.screen.tags[i]
|
|
if tag then
|
|
_G.client.focus:toggle_tag(tag)
|
|
end
|
|
end
|
|
end, descr_toggle_focus))
|
|
end
|
|
|
|
return globalKeys
|