mirror of
https://github.com/samsonjs/bin.git
synced 2026-03-25 07:55:47 +00:00
11 lines
231 B
Bash
Executable file
11 lines
231 B
Bash
Executable file
#!/bin/sh
|
|
|
|
for svc in $HOME/Library/LaunchAgents/*; do
|
|
echo "* Loading $svc"
|
|
launchctl load "$svc"
|
|
done
|
|
|
|
for svc in /Library/LaunchAgents/* /Library/LaunchDaemons/*; do
|
|
echo "* Loading $svc"
|
|
sudo launchctl load "$svc"
|
|
done
|