Multiple WoW applications on a Mac?
First, let me say this... I am a multi-box n00b... but not a "forum" (in the general sense) n00b so I did try to search for this, but I could NOT find anything related to what I wanted to know... so here it goes.
I found this Terminal code to run multiple applications of WoW on my mac, but I wanted to know if there is any variable that I needed to change to make a 3rd/4th/5th? I am at work, so I can't test it out... and I don't want to break my WoW install, so I wanted to ask first. Here is the code:
Code:
#!/bin/sh
p1="/Applications/World of Warcraft"
p2=$p1/WoWCopy
mkdir "$p2"
ln -s "$p1/Data" "$p2/Data"
ditto -X "$p1/World of Warcraft.app" "$p2/World of Warcraft.app"
I know ZERO about writing or reading code, but I can follow instructions... so getting the code into termial doesn't scare me, but is there anything in that string that I would need to change so that I can "do it again"? I have three accounts, and I want to run them all at the same time, with different addons for each account. My Shaman doesn't need "Tankadin2" in his addon list, and my Warlock doesn't need "Healbot" for anything... etc etc.
If this has already been asked/answered, a link would be great. I tried the wiki, the forums, and even google... but when I search "multiple mac applications" I was getting results with "multiple shaman" or "macro"... so after 20 minutes of hunting... I am starting my own thread.
aTdHvAaNnKcSe
TL;DR?
I know how to make a copy of my WoW application, but I don't know if it will work twice... help me understand that code ^^
Multiple WoW applications on a Mac? - Window Scaling
Oh, I forgot to mention ... I recently discovered how to scale my other WoW windows smaller than WoW normally allows on a Mac so they all fit better on the screen.
If you fire up a Terminal session and execute the command:
$ defaults write com.blizzard.worldofwarcraft AppleDisplayScaleFactor 0.5
The next time you start up a WoW client after this, you will be able to shrink its window to 50% the normal smallest size.
You will want to reset the scaling factor after this, with the following command, or WoW will always start up this way:
$ defaults write com.blizzard.worldofwarcraft AppleDisplayScaleFactor 1
There's probably an easier way to have the 2-5th WoW clients do this, but right now I just start up my first client, then execute the scaling command, then start up following clients, and finally reset the scaling factor to 1. Now if only it provided PiP functionality!