diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2018-11-19 19:10:12 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2018-11-19 19:10:12 -0200 |
commit | 2289ce86d6e6c7d60b662689f7868b532d20575f (patch) | |
tree | c284b6a960cab7e05e28d6292780a5a99d03a612 | |
parent | 5b58cb46c0efa6cf3e4c1f9f82121b577e992a6c (diff) | |
download | awesome-2289ce86d6e6c7d60b662689f7868b532d20575f.tar.gz awesome-2289ce86d6e6c7d60b662689f7868b532d20575f.tar.bz2 |
Switch tor-expendable for a tor disposable VM
-rw-r--r-- | config.dot/awesome.link/keys.lua | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/config.dot/awesome.link/keys.lua b/config.dot/awesome.link/keys.lua index 1b7cdca..0723e92 100644 --- a/config.dot/awesome.link/keys.lua +++ b/config.dot/awesome.link/keys.lua @@ -77,7 +77,8 @@ globalkeys = awful.util.table.join(root.keys(), awful.key({ modkey, "Control" }, "s", function () awful.spawn("kvmx up sandbox") end, {description = "vm: sadbox", group = "client"}), awful.key({ modkey, "Control" }, "t", function () awful.spawn("kvmx up tor") end, {description = "vm: tor", group = "client"}), awful.key({ modkey, "Control" }, "v", function () awful.spawn("kvmx up vpn") end, {description = "vm: vpn", group = "client"}), - awful.key({ modkey, "Control" }, "x", function () awful.spawn("kvmx up tor-expendable") end, {description = "vm: tor-expendable", group = "client"}), + --awful.key({ modkey, "Control" }, "x", function () awful.spawn("kvmx up tor-expendable") end, {description = "vm: tor-expendable", group = "client"}), + awful.key({ modkey, "Control" }, "x", function () awful.spawn("kvmx disposable tor") end, {description = "vm: tor disposable", group = "client"}), awful.key({ modkey, "Control" }, "w", function () awful.spawn("kvmx up web") end, {description = "vm: web", group = "client"}), awful.key({ modkey, "Shift" }, "a", function () awful.spawn("kvmx suspend tails") end, {description = "vm: down: tails", group = "client"}), awful.key({ modkey, "Shift" }, "b", function () awful.spawn("kvmx suspend bankline") end, {description = "vm: down: bankline", group = "client"}), @@ -88,7 +89,7 @@ globalkeys = awful.util.table.join(root.keys(), awful.key({ modkey, "Shift" }, "s", function () awful.spawn("kvmx suspend sandbox") end, {description = "vm: down: sandbox", group = "client"}), awful.key({ modkey, "Shift" }, "t", function () awful.spawn("kvmx suspend tor") end, {description = "vm: down: tor", group = "client"}), awful.key({ modkey, "Shift" }, "v", function () awful.spawn("kvmx suspend vpn") end, {description = "vm: down: vpn", group = "client"}), - awful.key({ modkey, "Shift" }, "x", function () awful.spawn("kvmx suspend tor-expendable") end, {description = "vm: down: tor-expendable", group = "client"}), + --awful.key({ modkey, "Shift" }, "x", function () awful.spawn("kvmx suspend tor-expendable") end, {description = "vm: down: tor-expendable", group = "client"}), awful.key({ modkey, "Shift" }, "w", function () awful.spawn("kvmx suspend web") end, {description = "vm: down: web", group = "client"}) ) |