mirror of
https://github.com/NohamR/AM-Exporter.git
synced 2026-05-24 19:58:34 +00:00
15 lines
385 B
Bash
Executable File
15 lines
385 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
|
|
|
|
if launchctl list | grep am.noh.music-exp; then
|
|
echo "--- Agent successfully loaded"
|
|
echo "--- INSTALL SUCCESS"
|
|
else
|
|
echo "--- ERROR: Agent failed to load"
|
|
fi |