diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2018-03-03 17:07:03 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2018-03-03 17:07:03 -0300 |
commit | 01654792480af824067958a2761584c81b99fd89 (patch) | |
tree | 7489e07cfc6210a2ec0f855e140c937e5414c579 | |
parent | 36ebbbace25f01e49f938ef02da6d98f0d2a420d (diff) | |
download | awesome-01654792480af824067958a2761584c81b99fd89.tar.gz awesome-01654792480af824067958a2761584c81b99fd89.tar.bz2 |
Updates ranger and screenshot key bindings
-rw-r--r-- | config.dot/awesome.link/keys.lua | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/config.dot/awesome.link/keys.lua b/config.dot/awesome.link/keys.lua index 3433679..9c00faf 100644 --- a/config.dot/awesome.link/keys.lua +++ b/config.dot/awesome.link/keys.lua @@ -1,14 +1,15 @@ -- Key bindings globalkeys = awful.util.table.join(root.keys(), - awful.key({ modkey, }, "a", function () awful.spawn("thunar") end, {description = "thunar", group = "client"}), + --awful.key({ modkey, }, "a", function () awful.spawn("thunar") end, {description = "thunar", group = "client"}), + awful.key({ modkey, }, "a", function () awful.spawn("terminal ranger load") end, {description = "ranger", group = "client"}), awful.key({ modkey, }, "b", function () awful.spawn("firefox-profile default") end, {description = "firefox", group = "client"}), awful.key({ modkey, }, "c", function () awful.spawn("terminal xcalendar") end, {description = "calendar", group = "client"}), awful.key({ modkey, }, "d", function () awful.spawn("terminal shell local media") end, {description = "media", group = "client"}), awful.key({ modkey, }, "e", function () awful.spawn("screenshot") end, {description = "screenshot", group = "client"}), - awful.key({ modkey, }, "g", function () awful.spawn("vmg") end, {description = "gimp", group = "client"}), + awful.key({ modkey, }, "g", function () awful.spawn("vmg") end, {description = "vmg", group = "client"}), awful.key({ modkey, }, "h", function () awful.spawn("terminal chat") end, {description = "chat", group = "client"}), - --awful.key({ modkey, }, "i", function () awful.spawn("geeqie load") end, {description = "geeqie", group = "client"}), - awful.key({ modkey, }, "i", function () awful.spawn("terminal ranger load") end, {description = "ranger", group = "client"}), + --awful.key({ modkey, }, "i", function () awful.spawn("geeqie load") end, {description = "geeqie", group = "client"}), + awful.key({ modkey, }, "i", function () awful.spawn("screenshot -s") end, {description = "region screenshot", group = "client"}), awful.key({ modkey, }, "l", function () awful.spawn("gpick -s -p") end, {description = "gpick", group = "client"}), awful.key({ modkey, }, "m", function () awful.spawn("terminal xmail") end, {description = "mail", group = "client"}), awful.key({ modkey, }, "n", function () awful.spawn("terminal news") end, {description = "news", group = "client"}), |