Helpper to start Parallels on the latest Big Sur Beta
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
### | |
# Description: Helpper to start Parallels on the latest Big Sur Beta | |
# File: ~/OneDrive/bin/start-Parallels | |
# Autor: Joerg Hochwald | |
# License: Freeware | |
### | |
# Load some defaults | |
. /etc/bashrc | |
PATH=/usr/local/bin:/usr/local/sbin/:/var/root/bin/:$PATH | |
export PATH | |
# Set the compatibility flag | |
export SYSTEM_VERSION_COMPAT=1 | |
# Start Parallels Desktop (15) | |
/usr/bin/open -a "Parallels Desktop" | |
# Alternative: | |
# /usr/bin/open /Applications/Parallels\ Desktop.app | |
# To launch the Installer: | |
# /usr/bin/open '/Volumes/Parallels Desktop 15/Install.app' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment