aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2017-05-12 15:48:53 -0300
committerSilvio Rhatto <rhatto@riseup.net>2017-05-12 15:48:53 -0300
commit003650ed0213f09e313063a14a5e260ad16e4b0c (patch)
tree1c6a3e96649dfa3472133b7959ad0c84a09746cc
parent4a729791077f738198b3481f9d71ee166500df3a (diff)
downloadawesome-003650ed0213f09e313063a14a5e260ad16e4b0c.tar.gz
awesome-003650ed0213f09e313063a14a5e260ad16e4b0c.tar.bz2
More virtual machine keys
-rw-r--r--config.dot/awesome.link/keys.lua8
1 files changed, 8 insertions, 0 deletions
diff --git a/config.dot/awesome.link/keys.lua b/config.dot/awesome.link/keys.lua
index 7c100a0..1d02af6 100644
--- a/config.dot/awesome.link/keys.lua
+++ b/config.dot/awesome.link/keys.lua
@@ -38,11 +38,19 @@ globalkeys = awful.util.table.join(root.keys(),
-- Virtual environments
awful.key({ modkey, "Control" }, "a", function () awful.util.spawn("kvmx up tails") end),
awful.key({ modkey, "Control" }, "b", function () awful.util.spawn("kvmx up bankline") end),
+ awful.key({ modkey, "Control" }, "e", function () awful.util.spawn("kvmx up test") end),
+ awful.key({ modkey, "Control" }, "s", function () awful.util.spawn("kvmx up signal") end),
awful.key({ modkey, "Control" }, "t", function () awful.util.spawn("kvmx up tor") end),
+ awful.key({ modkey, "Control" }, "v", function () awful.util.spawn("kvmx up vpn") end),
+ awful.key({ modkey, "Control" }, "x", function () awful.util.spawn("kvmx up tor-expendable") end),
awful.key({ modkey, "Control" }, "w", function () awful.util.spawn("kvmx up web") end),
awful.key({ modkey, "Shift" }, "a", function () awful.util.spawn("kvmx hibernate tails") end),
awful.key({ modkey, "Shift" }, "b", function () awful.util.spawn("kvmx hibernate bankline") end),
+ awful.key({ modkey, "Shift" }, "e", function () awful.util.spawn("kvmx hibernate test") end),
+ awful.key({ modkey, "Shift" }, "s", function () awful.util.spawn("kvmx hibernate signal") end),
awful.key({ modkey, "Shift" }, "t", function () awful.util.spawn("kvmx hibernate tor") end),
+ awful.key({ modkey, "Shift" }, "v", function () awful.util.spawn("kvmx hibernate vpn") end),
+ awful.key({ modkey, "Shift" }, "x", function () awful.util.spawn("kvmx hibernate tor-expendable") end),
awful.key({ modkey, "Shift" }, "w", function () awful.util.spawn("kvmx hibernate web") end)
)