diff options
-rw-r--r-- | config.dot/awesome.link/keys.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/config.dot/awesome.link/keys.lua b/config.dot/awesome.link/keys.lua index b89a848..2bddaf0 100644 --- a/config.dot/awesome.link/keys.lua +++ b/config.dot/awesome.link/keys.lua @@ -13,10 +13,11 @@ globalkeys = awful.util.table.join(root.keys(), awful.key({ modkey, }, "p", function () awful.util.spawn("terminal keyringer default sclip") end), awful.key({ modkey, }, "s", function () awful.util.spawn("xsuspend") end), awful.key({ modkey, }, "t", function () awful.util.spawn("tor-browser") end), + awful.key({ modkey, }, "u", function () awful.util.spawn("qrpaste") end), awful.key({ modkey, }, "v", function () awful.util.spawn("terminal vim") end), awful.key({ modkey, }, "x", function () awful.util.spawn("terminal wicd-curses") end), - awful.key({ modkey, }, "z", function () awful.util.spawn("terminal shell root") end), awful.key({ modkey, }, "y", function () awful.util.spawn("xclip-clean") end), + awful.key({ modkey, }, "z", function () awful.util.spawn("terminal shell root") end), -- Unused --awful.key({ modkey, }, "e", function () awful.util.spawn("command") end), |