local hotkeys_popup = require("awful.hotkeys_popup").widget
+local utils = require("utils")
-- Default modkey.
modkey = "Mod4"
{description = "show main menu", group = "awesome"}),
-- Layout manipulation
- awful.key({ modkey, "Shift" }, "j", function () awful.client.swap.byidx( 1) end,
+ awful.key({ modkey, "Shift" }, "k", function () awful.client.swap.byidx( 1) end,
{description = "swap with next client by index", group = "client"}),
- awful.key({ modkey, "Shift" }, "k", function () awful.client.swap.byidx( -1) end,
+ awful.key({ modkey, "Shift" }, "j", function () awful.client.swap.byidx( -1) end,
{description = "swap with previous client by index", group = "client"}),
awful.key({ modkey, }, "#49", function () awful.screen.focus_relative( 1) end, -- that's the key left of 1 (chronos)
{description = "focus the next screen", group = "screen"}),
awful.key({ }, "F13", function () awful.spawn("ksnapshot") end),
awful.key({ }, "Print", function () awful.spawn("ksnapshot") end),
-- ranger
- awful.key({ modkey }, "r", function () awful.spawn(terminal .. " -e ranger") end),
+ awful.key({ modkey }, "r", function () utils.spawn_terminal("ranger") end),
-- Volume
awful.key({ }, "XF86AudioMute", function () awful.spawn("pulsemixer --toggle-mute") end,
{description = "toggle mute", group = "volume"}),
awful.key({ modkey, "Control" }, "Escape", function () awful.spawn("i3lock -c 000000") end),
-- VimWiki
awful.key({ modkey }, "i", function ()
- awful.spawn(terminal.." -name vimwiki -e vim -c 'call vimwiki#base#goto_index(v:count1)'")
- end)
+ utils.spawn_terminal("vim -c 'call vimwiki#base#goto_index(v:count1)'", { instance = "vimwiki"})
+ end),
+ -- clipboard
+ -- requires a little sleep before simulating shift+Insert, otherwise I
+ -- believe the focus is still on awful and not the current window
+ awful.key({ modkey }, "\\", function () awful.spawn('xdotool sleep 0.2 key --clearmodifiers shift+Insert') end,
+ {description = "paste primary selection", group = "awesome"})
)
-- Client keys {{{1