1. Transfer fonts from Windows to Mac
1.1 Find fonts in Windows
Control Panel -> Appearance and Personalization -> Fonts
Copy the Fonts
[Read More]
Use pgrep and kill to kill processes in terminal.
For example, to kill all the processes of BetterTouchTool:
# -i to perform case-insensitive match
# kill -<signal> <pid>
pgrep -i bettertouchtool | xargs kill -9
[Read More]