I’d like to open an app from the terminal using the “Open in low resolution” mode, which normally can be achieved by triggering an appropriate checkbox in file info. How do I do that?
Asked
Active
Viewed 478 times
1
-
Does this answer your question? ["Open in Low Resolution" from command line](https://stackoverflow.com/questions/55382237/open-in-low-resolution-from-command-line) – rob mayoff Apr 09 '21 at 13:58
2 Answers
1
pass the argument -AppleMagnifiedMode YES
most applications (not all) recognize it

Paolo
- 15,233
- 27
- 70
- 91
-
Sorry, could you tell me what exact command should I write? If I open a program from terminal by typing its name stated in binaries located in /usr/local/bin/, how can I include -AppleMagnifiedMode YES? Typing just `
-AppleMagnifiedMode YES` doesn't work – VonbatenBach Nov 20 '20 at 13:31 -
1the argument should work with common GUI Applications, ex. `/Applications/Preview.app/Contents/MacOS/Preview -AppleMagnifiedMode YES` – Paolo Nov 20 '20 at 14:10
-
Ok, so if I have created a symlink for a binary in /Applications/..., which is located in /usr/local/bin I cannot run it in Low Resolution this way? – VonbatenBach Nov 20 '20 at 15:46
-
yes, you can. Pass the parameter when launching the application using the symlink – Paolo Sep 06 '22 at 09:13