alanhe421 / alfred-workflows

Save time, Improve life.🚀 ☕️ 💻
https://alfred.1991421.cn
MIT License
659 stars 63 forks source link

[Feat]: resolution #321

Closed alanhe421 closed 1 year ago

alanhe421 commented 1 year ago

Describe the need

display mac resolution.

support multi screen

Describe the solution

set resolutions to {}
repeat with p in paragraphs of ¬
    (do shell script "system_profiler SPDisplaysDataType | awk '/Resolution:/{ printf \"%s %s %s\\n\", $2, $4, ($5 == \"Retina\" ? 2 : 1) }'")
    set resolutions to resolutions & {{word 1 of p as number, word 2 of p as number, word 3 of p as number}}
end repeat

get resolutions

image

Workflow Name

About Mac

alanhe421 commented 1 year ago

image