Administrators MaLd0n Posted May 26, 2024 Administrators Posted May 26, 2024 -Support Olarila Vanilla Hackintosh by making a donation HERE -About Premium Users you can check HERE -Problems with Paypal HERE -Installation Guide HERE -Hackintosh EFI folders HERE -Hackintosh USB Remap HERE -How to update OpenCore and Kexts HERE Instructions from HERE Install needed adobe apps from adobe creative cloud. Open Terminal. Copy-paste the below command to your terminal and run it (enter password when asked). files_list=(MMXCore FastCore TextModel libiomp5.dylib) lib_dir="${HOME}/Documents/AdobeLibs" lib1_file="${lib_dir}/libiomp5.dylib" lib1_link="https://raw.githubusercontent.com/naveenkrdy/Misc/master/Libs/libiomp5.dylib" for file in $files_list; do find /Applications/Adobe* -type f -name $file | while read -r curr_file; do name=$(basename $curr_file) sw_vers -productVersion | grep "11" >/dev/null 2>&1 [[ $? == 0 ]] && [[ $name =~ ^(MMXCore|FastCore)$ ]] && continue echo "found $curr_file" sudo -v [[ ! -f ${curr_file}.back ]] && sudo cp -f $curr_file ${curr_file}.back || sudo cp -f ${curr_file}.back $curr_file if [[ $name == "libiomp5.dylib" ]]; then [[ ! -d $lib_dir ]] && mkdir $lib_dir [[ ! -f $lib1_file ]] && cd $lib_dir && curl -sO $lib1_link adobelib_dir=$(dirname "$curr_file") echo -n "replacing " && sudo cp -vf $lib1_file $adobelib_dir elif [[ $name == "TextModel" ]]; then echo "emptying $curr_file" sudo echo -n >$curr_file else echo "patching $curr_file" sudo perl -i -pe 's|\x90\x90\x90\x90\x56\xE8\x6A\x00|\x90\x90\x90\x90\x56\xE8\x3A\x00|sg' $curr_file sudo perl -i -pe 's|\x90\x90\x90\x90\x56\xE8\x4A\x00|\x90\x90\x90\x90\x56\xE8\x1A\x00|sg' $curr_file fi done done Now copy-paste the below command to terminal and run it (enter password if asked). agent_dir="${HOME}/Library/LaunchAgents" env_file="${agent_dir}/environment.plist" lib_dir="${HOME}/Documents/AdobeLibs" lib2_file="${lib_dir}/libfakeintel.dylib" lib2_link="https://raw.githubusercontent.com/naveenkrdy/Misc/master/Libs/libfakeintel.dylib" sw_vers -productVersion | grep "11" >/dev/null 2>&1 if [[ $? == 0 ]]; then [[ ! -d $lib_dir ]] && mkdir $lib_dir [[ ! -f $lib2_file ]] && cd $lib_dir && curl -sO $lib2_link env="launchctl setenv DYLD_INSERT_LIBRARIES $lib2_file" else mkl_value=$( sysctl -n machdep.cpu.brand_string | grep FX >/dev/null 2>&1 echo $(($? != 0 ? 5 : 4)) ) env="launchctl setenv MKL_DEBUG_CPU_TYPE $mkl_value" fi [[ ! -d $agent_dir ]] && mkdir $agent_dir cat >$env_file <<EOF <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>Label</key> <string>mkl-debug</string> <key>ProgramArguments</key> <array> <string>sh</string> <string>-c</string> <string>$env;</string> </array> <key>RunAtLoad</key> <true/> </dict> </plist> EOF launchctl load ${AGENT} >/dev/null 2>&1 launchctl start ${AGENT} >/dev/null 2>&1 Reboot macOS. To revert step-4 agent_dir="${HOME}/Library/LaunchAgents" env_file="${agent_dir}/environment.plist" if [[ -f $env_file ]]; then echo "Deleting $env_file" launchctl unload ${env_file} >/dev/null 2>&1 launchctl stop ${env_file} >/dev/null 2>&1 rm -rf $env_file fi Reboot macOS We're all here to have fun and learn from each other! That's all Folks! -Guides and Tutorials HERE -Hackintosh Tutorial Database - HERE -The largest EFI folder collection for Hackintosh HERE -Support Olarila Vanilla Hackintosh by making a donation HERE -Professional Hackintosh Support since 2006 HERE
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now