<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Start Roon Display on Apple TV]]></title><description><![CDATA[<p dir="auto">Using automator, this script works on Ventura. First enable screen mirroring in the menu bar.</p>
<p dir="auto">Create an automator (osascript had issues sending key commands from terminal) to run an applescript and save it (Here on my Desktop)</p>
<pre><code># open chrome
tell application "Google Chrome"
	open location "http://192.168.68.xxx:9330/display/"
	activate
end tell

delay 1

# set full screen
tell application "System Events"
	keystroke "f" using {command down, control down}
end tell


-- Click the “Screen Mirroring” menu bar item.
set timeoutSeconds to 2.0
set uiScript to "click menu bar item 6 of menu bar 1 of application process \"Control Center\""
my doWithTimeout(uiScript, timeoutSeconds)

-- Click the “Roku TV” checkbox.
delay 1
set timeoutSeconds to 2.0
set uiScript to "click checkbox 2 of scroll area 1 of group 1 of window \"Control Center\" of application process \"Control Center\""
my doWithTimeout(uiScript, timeoutSeconds)

on doWithTimeout(uiScript, timeoutSeconds)
	set endDate to (current date) + timeoutSeconds
	repeat
		try
			run script "tell application \"System Events\"
" &amp; uiScript &amp; "
end tell"
			exit repeat
		on error errorMessage
			if ((current date) &gt; endDate) then
				error "Can not " &amp; uiScript
			end if
		end try
	end repeat
end doWithTimeout
</code></pre>
<p dir="auto">Next the TriggerCMD is just</p>
<pre><code>automator /Path/To/File
</code></pre>
]]></description><link>https://www.triggercmd.com/forum/topic/2483/start-roon-display-on-apple-tv</link><generator>RSS for Node</generator><lastBuildDate>Fri, 12 Jun 2026 01:31:46 GMT</lastBuildDate><atom:link href="https://www.triggercmd.com/forum/topic/2483.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 30 Dec 2022 15:20:13 GMT</pubDate><ttl>60</ttl></channel></rss>