Skip to content

Instantly share code, notes, and snippets.

@halcyonCorsair
Forked from jwswj/gist:6152672
Last active December 20, 2015 15:19
Show Gist options
  • Save halcyonCorsair/6153338 to your computer and use it in GitHub Desktop.
Save halcyonCorsair/6153338 to your computer and use it in GitHub Desktop.

Make a copy of Skype:

  1. Open Finder.
  2. In the sidebar, click Macintosh HD > Applications.
  3. Click Skype to select it.
  4. Press Cmd+C, then Cmd+V to copy and paste Skype.
  5. Skype copy appears.

Change the bundle identifier in the Info.plist file:

  1. Right-click the copy of Skype and select Show Package Contents.
  2. Click the folder named Contents, then open the Info.plist file.
  3. In the Info.plist file, locate the bundle identifier setting, com.skype.skype and change it to com.yourname.skype (for example: com.jason.skype).
  4. Go to File > Save, and then close the file.
  5. Change the data path used by Skype for storing data files:
  6. Open Terminal (Go to Finder and in the Search field, enter Terminal).
  7. In the Terminal window, enter the command: defaults write <bundle-identifier> DataPath "<path/to/new/data/directory>"

For example: defaults write com.jason.skype DataPath "~/Library/Application\ Support/Skype copy"

Source - http://community.skype.com/t5/Mac/How-to-create-two-instances-of-Skype-on-the-Desktop/td-p/128

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment