From fc4ebfd5fd2013d1b64b26cd4b531ae49de5e027 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Mon, 15 Jul 2024 09:44:06 +0100 Subject: [PATCH] fix(hammerspoon/misc): change kill keybinding to not conflict with window management --- hammerspoon/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hammerspoon/init.lua b/hammerspoon/init.lua index d2b0fc7..fa6cc26 100644 --- a/hammerspoon/init.lua +++ b/hammerspoon/init.lua @@ -48,7 +48,7 @@ wm:init() -------------------------------------------------------------------------------- local kd = require('kill_dock') -hs.hotkey.bind({ 'cmd', 'alt', 'ctrl' }, 'K', kd.killDock) +hs.hotkey.bind({ 'cmd', 'alt', 'ctrl' }, 'D', kd.killDock) -------------------------------------------------------------------------------- -- The End