diff options
| author | Blista Kanjo | 2022-11-01 04:01:49 -0400 |
|---|---|---|
| committer | Blista Kanjo | 2022-11-01 04:01:49 -0400 |
| commit | 7b3e261732d655cdc94d0bf84e12807dd2397dd4 (patch) | |
| tree | 38e4597ee4743692611d9ac923ca9115d8e5340d /.config/awesome/rc.lua | |
| parent | e1b26c9b654f3f7a8e00f4f7c194631a18fd1f18 (diff) | |
refactor: replaced the xkill keybind
Diffstat (limited to '.config/awesome/rc.lua')
| -rw-r--r-- | .config/awesome/rc.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index c4a7104..d84bb95 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -316,7 +316,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({ modkey, "Mod1" }, "Delete", function () awful.spawn.easy_async_with_shell("xkill") end, + awful.key({ modkey, "Control" }, "x", 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("alacritty -t 'Task Manager' -e 'htop'") end, {description = "launch HTOP", group = "launcher"}), |
