Quote:
Originally Posted by macaaron
Hello,
I have the same issue here (Macbook Air M3, Sonoma 14.5).
Thank you for the explanation.
Meanwhile, do we have a workaround to launch Calibre without Alfred, Roger, Gaston and other ChatGPT stuff?
Regards
|
Here's the AppleScript I've been using. Just paste it into Script Editor, replace the app name with whatever you use, click Compile to make sure it works for you, and then Save as an application. You can add multiple apps to quit and to activate after lines 2 and 11. I called mine Cailibre Alternative, and use it to open Calibre for the time being. So far, it's been working!
Code:
-- Quit Alfred
tell application "Alfred 5" to quit
-- Open Calibre
tell application "calibre" to activate
-- Monitor Calibre and reopen Alfred when Calibre closes
repeat
delay 1
if not (application "calibre" is running) then
tell application "Alfred 5" to activate
exit repeat
end if
end repeat