mirror of
https://github.com/NohamR/AM-Exporter.git
synced 2026-05-24 19:58:34 +00:00
10 lines
239 B
Bash
Executable File
10 lines
239 B
Bash
Executable File
#!/bin/sh -xe
|
|
|
|
echo --- Copy launch agent plist
|
|
mkdir ~/Library/LaunchAgents/ || true
|
|
cp -f music-exp.plist ~/Library/LaunchAgents/
|
|
|
|
echo --- Load launch agent
|
|
launchctl load ~/Library/LaunchAgents/music-exp.plist
|
|
echo --- INSTALL SUCCESS
|