#!/bin/bash # Copyright (C) 2020 The Qt Company Ltd. # SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only # Install screenresolution and set correct resolution at boot brew install screenresolution sudo tee -a /usr/local/bin/set_resolution.sh <<"EOF" #!/bin/bash sleep 20 /usr/local/bin/screenresolution set 1280x800x32@0 EOF sudo chmod a+x /usr/local/bin/set_resolution.sh sudo tee -a ~/Library/LaunchAgents/screenresolution.plist <<"EOF" Label org.qt.io.screenresolution ProgramArguments /usr/local/bin/set_resolution.sh RunAtLoad KeepAlive LaunchOnlyOnce StandardErrorPath /tmp/screenresolution.err StandardOutPath /tmp/screenresolution.out EOF