Results 15 comments of Chris Bailey

@panuhorsmalahti any update on this? I imagine it would be a fairly easy update

Raycast documentation: https://developers.raycast.com

@panuhorsmalahti these don't match the shortcut for every other app on macOS, would be nice if Lens followed macOS standards for keyboard shortcuts

would also love this. with hammerspoon ```lua hs.window.frontmostWindow():application():bundleID() ``` can get you the bundle ID of the overlay. maybe we could have a `frontmost_process` variable? or something

here's another HS solution: ```lua hs.pathwatcher.new('./init.lua', hs.reload):start() escape = hs.hotkey.bind({ 'cmd' }, 'escape', function() local window = hs.window.frontmostWindow() local application = window:application() local id = application:bundleID() if not application then...