diff options
-rw-r--r-- | config.dot/awesome.link/keys.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/config.dot/awesome.link/keys.lua b/config.dot/awesome.link/keys.lua index 292293f..414958d 100644 --- a/config.dot/awesome.link/keys.lua +++ b/config.dot/awesome.link/keys.lua @@ -62,6 +62,9 @@ globalkeys = awful.util.table.join(root.keys(), -- Hibernate awful.key({ }, "XF86Launch1", function () awful.spawn("xhibernate") end, {description = "", group = "client"}), + -- Clipboard between virtual machines + awful.key({ modkey, "" }, "Down", function () awful.spawn("terminal kvmx-clipboard") end, {description = "kvmx-clipboard", group = "client"}), + -- Virtual environments awful.key({ modkey, "Control" }, "a", function () awful.spawn("kvmx up tails") end, {description = "vm: tails", group = "client"}), awful.key({ modkey, "Control" }, "b", function () awful.spawn("kvmx up bankline") end, {description = "vm: bankline", group = "client"}), |