From 8c7f5f50cc245934ea93c1aa669a4b6430e06eeb Mon Sep 17 00:00:00 2001 From: Mutzi Date: Sat, 28 Jan 2023 12:58:27 +0100 Subject: [PATCH] Added hotkey for SIGKILL --- awesome/rc.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/awesome/rc.lua b/awesome/rc.lua index 5bb95a3..1fd248b 100644 --- a/awesome/rc.lua +++ b/awesome/rc.lua @@ -600,6 +600,9 @@ clientkeys = mytable.join( awful.key({ modkey, 'Shift' }, 'c', function(c) c:kill() end, { description = 'close', group = 'client' }), + awful.key({ modkey, 'Shift', 'Control', altkey }, 'c', function(c) + awesome.kill(c.pid, awesome.unix_signal['SIGKILL']) + end, { description = 'send sigkill', group = 'client' }), awful.key( { modkey, 'Control' }, 'space',