diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2018-11-13 11:48:02 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2018-11-13 11:48:02 -0200 |
commit | aa973fe901e2f7f28e852e7d7b6468ef3f5489e0 (patch) | |
tree | b36dfba5d0001dfd9793b4912ff6d319ea4882de | |
parent | 9c7d4eba2a9f25840ec8eb95cfcf9a1cb43f131b (diff) | |
download | awesome-aa973fe901e2f7f28e852e7d7b6468ef3f5489e0.tar.gz awesome-aa973fe901e2f7f28e852e7d7b6468ef3f5489e0.tar.bz2 |
Keys: use kvmx-copy and kvmx-paste
-rw-r--r-- | config.dot/awesome.link/keys.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config.dot/awesome.link/keys.lua b/config.dot/awesome.link/keys.lua index 8791f44..b8f7868 100644 --- a/config.dot/awesome.link/keys.lua +++ b/config.dot/awesome.link/keys.lua @@ -63,9 +63,9 @@ globalkeys = awful.util.table.join(root.keys(), awful.key({ }, "XF86Launch1", function () awful.spawn("xhibernate") end, {description = "", group = "client"}), -- Clipboard between virtual machines - --awful.key({ modkey, "" }, "Up", function () awful.spawn("terminal kvmx-spice-copy") end, {description = "kvmx-clipboard", group = "client"}), - --awful.key({ modkey, "" }, "Down", function () awful.spawn("terminal kvmx-spice-paste") end, {description = "kvmx-clipboard", group = "client"}), - awful.key({ modkey, "" }, "Down", function () awful.spawn("terminal kvmx-clipboard") end, {description = "kvmx-clipboard", group = "client"}), + awful.key({ modkey, "" }, "Up", function () awful.spawn("kvmx-spice-copy") end, {description = "kvmx-copy", group = "client"}), + awful.key({ modkey, "" }, "Down", function () awful.spawn("kvmx-spice-paste") end, {description = "kvmx-paste", group = "client"}), + --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"}), |