From 561d1415e2872aa38ac1ae1ae2d23f7ebdad3f26 Mon Sep 17 00:00:00 2001 From: Anthony Cicchetti Date: Wed, 16 Dec 2020 11:14:09 -0500 Subject: [PATCH] Add launchpad launching --- hammerspoon/init.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/hammerspoon/init.lua b/hammerspoon/init.lua index aaa8d7c..8c488f7 100644 --- a/hammerspoon/init.lua +++ b/hammerspoon/init.lua @@ -23,3 +23,7 @@ end) hs.hotkey.bind({"cmd", "alt"}, ",", function () hs.application.launchOrFocus("System Preferences") end) + +hs.hotkey.bind({"cmd", "shift"}, "l", function () + hs.application.launchOrFocus("Launchpad") +end)