📜 ⬆️ ⬇️

Two Skype simultaneously in Mac OS

Maybe someone needs to run several Skype accounts running simultaneously under Mac OS.

Create a new user. For example, let's call it test. Be sure to assign a password to it.
Open the terminal. We collect:

pupkin $ mkdir / Users / test / Application \ Support / Skype
')
Instead of 'test', substitute the name of the created user. We go:

pupkin $ su test

We start Skype:

pupkin $ ./Applications/Skype.app/Contents/MacOS/Skype

I wrote a small script for bash:

#! / bin / bash

#Username
username = test

# Check the availability of the directory you need to run Skype. If not, create
if [! -d / Users / $ {username} / Application \ Support / Skype]
then
mkdir / Users / $ {username} / Application \ Support / Skype
fi

# Run Skype
su $ {username} -c /Applications/Skype.app/Contents/MacOS/Skype

Do not forget to change the username of the username variable (do not put a space after the '=' sign). Let's call the script skype.sh. Making it executable:

pupkin $ chmod + x skype.sh

Run:

pupkin $ ./skype.sh

Source: https://habr.com/ru/post/70109/


All Articles