View Single Post
Old 07-30-2024, 08:53 AM   #12
macaaron
Junior Member
macaaron began at the beginning.
 
Posts: 6
Karma: 10
Join Date: Jul 2024
Device: iPad
Quote:
Originally Posted by .tycho View Post
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
Attached Files
File Type: txt Calibre-2024.07.30.txt (14.7 KB, 285 views)
macaaron is offline   Reply With Quote