aboutsummaryrefslogtreecommitdiff
path: root/awesome/rc.lua
diff options
context:
space:
mode:
authorBlista Kanjo2022-01-10 07:11:38 -0500
committerBlista Kanjo2022-01-10 07:11:38 -0500
commitd3570d6cfaab40317fc76a7bead14700620b28f3 (patch)
treeb46a1f753b200e929fe5041b8a5eb1ea5732fa29 /awesome/rc.lua
parent31efd6fcda38c47b701a385fa6e88c809239f1b5 (diff)
replaced some keybinds
Diffstat (limited to 'awesome/rc.lua')
-rw-r--r--awesome/rc.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/awesome/rc.lua b/awesome/rc.lua
index d6bfebb..6aabfea 100644
--- a/awesome/rc.lua
+++ b/awesome/rc.lua
@@ -312,7 +312,7 @@ globalkeys = gears.table.join(
{description = "take a screenshot of the active window", group = "launcher"}),
awful.key({ "Shift" }, "Print", function () awful.spawn.easy_async_with_shell("xfce4-screenshooter -r --mouse") end,
{description = "take a screenshot of an area of the screen", group = "launcher"}),
- awful.key({ "Shift", "Control" }, "x", function () awful.spawn.easy_async_with_shell("xkill") end,
+ awful.key({ modkey, "Mod1" }, "Delete", function () awful.spawn.easy_async_with_shell("xkill") end,
{description = "kill a window by brute force", group = "launcher"}),
awful.key({ "Control", "Mod1" }, "Delete", function () awful.spawn("qterminal -e 'htop' --title 'Task Manager'") end,
{description = "Launch HTOP", group = "launcher"}),
@@ -338,7 +338,7 @@ globalkeys = gears.table.join(
--[[ awful.key({ "Control", "Mod1" }, "BackSpace", function () awful.spawn("sh -c 'pkill -9 -u $USER'") end,
{description = "quit awesome", group = "launcher"}), ]]--
- awful.key({ "Control", "Shift" }, "Delete", function () awful.spawn("gnome-system-monitor") end,
+ awful.key({ modkey, "Control" }, "Delete", function () awful.spawn("gnome-system-monitor") end,
{description = "gnome-system-monitor", group = "launcher"}),