Added hotkey for SIGKILL

This commit is contained in:
Mutzi 2023-01-28 12:58:27 +01:00
parent 5cf452e053
commit 8c7f5f50cc

View File

@ -600,6 +600,9 @@ clientkeys = mytable.join(
awful.key({ modkey, 'Shift' }, 'c', function(c) awful.key({ modkey, 'Shift' }, 'c', function(c)
c:kill() c:kill()
end, { description = 'close', group = 'client' }), 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( awful.key(
{ modkey, 'Control' }, { modkey, 'Control' },
'space', 'space',