Feature Request: Global Shortcut Key to open a Boop Window
Having a global shortcut key to launch Boop with the paste buffer is incredibly useful. I currently achieve it with Automator but it would be useful to build this into the tool itself. This would require System Preferences > Security & Privacy > Accessibility permissions.
I currently do this with Automator.
- Launch Automator
- Start a new action
- Set the "Workflow receives" to "no input" in "any application"
- Find and drag "Launch Application" from the left
- Set the Application to "Boop"
- Save the action as "Launch Boop"
- Open System Preferences > Keyboard > Shortcuts > Services
- Find General > Launch Boop in the list and tick it
- Double-click it to add a shortcut
- Set the shortcut (I used cmd-shift-B)
Optional, before step 6,
- Find and drag "Run AppleScript" as a second action
- Enter the script:
on run {input, parameters}
tell application "System Events" to keystroke "a" using command down
tell application "System Events" to keystroke "v" using command down
tell application "System Events" to keystroke "a" using command down
tell application "System Events" to keystroke "b" using command down
tell application "System Events" to keystroke "*"
tell application "System Events" to keystroke "a" using command down
end run


Something like this can also be done using Hammerspoon:
local cmd_shift = {"shift", "cmd"}
hs.hotkey.bind(cmd_shift, 'b', function() hs.application.launchOrFocus("Boop") end)
I've also done similar with Alfred https://github.com/pearcenuk/Alfred-public/tree/main/BOOPy
If you have text selected, Boop installs a global shortcut, ⌃⌥⌘B, that will send that text to Boop and open it if it's not already open.
And if you still want a shortcut to open Boop even without selected text, it's fairly easy to do now with the Shortcuts app:
