Skip to content

Instantly share code, notes, and snippets.

@troutcolor
Created February 12, 2017 10:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save troutcolor/e8e694a4abd9f04657707980379532e0 to your computer and use it in GitHub Desktop.
Save troutcolor/e8e694a4abd9f04657707980379532e0 to your computer and use it in GitHub Desktop.
detect retina display for applescript
on isRetina()
set ret to (do shell script "system_profiler SPDisplaysDataType | awk '/Retina:/{print $2}'")
if ret is "Yes" then
return true
else
return false
end if
end isRetina
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment