Quote:
Originally Posted by .tycho
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
|
Hello,
Thank you. Actually I don't have Alfred.
I copy pasted Calibre from the DMG to the Application folder. After the security approval, Calibre doesn't launch on my mac. This is a Macbook Air M3.
I don't understand the logs (attached). I never had this issue on my previous computers.
Maybe could you please have a look?
Laurent