From f2dbf55ad96e50fe0b753c226c8584c315a68bc7 Mon Sep 17 00:00:00 2001 From: Sheldon Lee Date: Mon, 6 Jul 2020 01:31:49 +0100 Subject: [PATCH] Changed screenshot binding. --- .config/awesome/rc.lua | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index 069a586..d6bb340 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -330,11 +330,15 @@ globalkeys = gears.table.join( awful.key({ modkey }, "p", function() menubar.show() end, {description = "show the menubar", group = "launcher"}), - -- custom + -- Custom Bindings awful.key({ modkey, }, "b", function () awful.spawn("firefox") end, + {description = "open firefox", group = "launcher"}), + awful.key({ modkey, }, "e", function () awful.spawn("alacritty -e nnn") end, + {description = "open firefox", group = "launcher"}), + awful.key({ modkey, "Shift" }, "e", function () awful.spawn("nemo") end, {description = "open firefox", group = "launcher"}), -- set to spawn after key release to work - awful.key({ modkey, "Shift" }, "s", nil, function () awful.spawn.with_shell("~/.config/awesome/screenshot.sh") end, + awful.key({ modkey, }, "q", nil, function () awful.spawn.with_shell("~/.config/awesome/screenshot.sh") end, {description = "dmenu screenshot prompt", group = "launcher"}) )