You can find information on my terminal configuration here
This list was auto-generated on macOS 10.15 (Catalina) using a script that did the following:
- grabbed the name of all the
.plistfiles located in the 5 folders used bylaunchctl:
~/Library/LaunchAgentsPer-user agents provided by the user./Library/LaunchAgentsPer-user agents provided by the administrator./Library/LaunchDaemonsSystem wide daemons provided by the administrator./System/Library/LaunchAgentsOS X Per-user agents./System/Library/LaunchDaemonsOS X System wide daemons.
The following is taken from a brilliant answer on unix.se. Posting it here for personal reference. The question was:
${var//pattern/replacement} is using zsh wildcard patterns for pattern, the same ones as used for filename generation aka globbing which are a superset of the sh wildcard patterns. The syntax is also affected by the kshglob and extendedglob options. The ${var//pattern/replacement} comes from the Korn shell initially.
I'd recommend enabling extendedglob (set -o extendedglob in your ~/.zshrc) which gives you the most features (more so than standard EREs) at the expense of some backward incompatibility in some corner cases.
You'll find it documented at info zsh 'filename generation'.
| #!/usr/bin/env python3 | |
| import sys | |
| from subprocess import call | |
| import json | |
| import os | |
| import requests | |
| import shutil | |
| import colorama | |