diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2023-03-01 07:35:11 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2023-03-01 07:35:11 -0300 |
commit | 600cdae3e2d4fccc45e22fedcf0898b78c8ef5a4 (patch) | |
tree | acbcdb740e364f2edd5edcfb48201f9682fa5867 | |
parent | c5c5b6e9dbc5ee40d694af6cd1cbeb58fd7ad2a1 (diff) | |
download | awesome-600cdae3e2d4fccc45e22fedcf0898b78c8ef5a4.tar.gz awesome-600cdae3e2d4fccc45e22fedcf0898b78c8ef5a4.tar.bz2 |
Fix: keys: rename VM 'bankline' to 'accounting'
-rw-r--r-- | config.dot/awesome.link/keys.lua | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/config.dot/awesome.link/keys.lua b/config.dot/awesome.link/keys.lua index 1e5a2bc..414698d 100644 --- a/config.dot/awesome.link/keys.lua +++ b/config.dot/awesome.link/keys.lua @@ -73,8 +73,7 @@ globalkeys = awful.util.table.join(root.keys(), --awful.key({ modkey, "" }, "Down", function () awful.spawn("terminal kvmx-clipboard") end, {description = "kvmx-clipboard", group = "client"}), -- Virtual environments: powerup - 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"}), + awful.key({ modkey, "Control" }, "a", function () awful.spawn("kvmx up accounting") end, {description = "vm: accounting", group = "client"}), awful.key({ modkey, "Control" }, "c", function () awful.spawn("kvmx up commerce") end, {description = "vm: commerce", group = "client"}), awful.key({ modkey, "Control" }, "d", function () awful.spawn("kvmx up doc") end, {description = "vm: doc", group = "client"}), awful.key({ modkey, "Control" }, "e", function () awful.spawn("kvmx up test") end, {description = "vm: test", group = "client"}), @@ -91,8 +90,7 @@ globalkeys = awful.util.table.join(root.keys(), awful.key({ modkey, "Control" }, "w", function () awful.spawn("kvmx up web") end, {description = "vm: web", group = "client"}), -- Virtual environments: suspend - 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"}), + awful.key({ modkey, "Shift" }, "a", function () awful.spawn("kvmx suspend accounting") end, {description = "vm: down: accounting", group = "client"}), awful.key({ modkey, "Shift" }, "c", function () awful.spawn("kvmx suspend commerce") end, {description = "vm: down: commerce", group = "client"}), awful.key({ modkey, "Shift" }, "d", function () awful.spawn("kvmx suspend doc") end, {description = "vm: down: doc", group = "client"}), awful.key({ modkey, "Shift" }, "e", function () awful.spawn("kvmx suspend test") end, {description = "vm: down: test", group = "client"}), |