diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2018-10-25 14:37:50 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2018-10-25 14:37:50 -0300 |
commit | 39fd2231c6c4d897b6647a8b1eac7692b9708003 (patch) | |
tree | a586be07af01733e5971fe4a403b89d432f89388 | |
parent | 087fa82e335a1903dea66aaf4521842117184628 (diff) | |
download | awesome-39fd2231c6c4d897b6647a8b1eac7692b9708003.tar.gz awesome-39fd2231c6c4d897b6647a8b1eac7692b9708003.tar.bz2 |
Adds key shortcut to kvmx-clipboard
-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"}), |