14 lines
468 B
Makefile
14 lines
468 B
Makefile
.PHONY: install
|
|
|
|
install:
|
|
./update-motd.sh
|
|
mkdir -p ${HOME}/Library/LaunchAgents/
|
|
cp com.bruno21.update-motd.plist ${HOME}/Library/LaunchAgents/
|
|
launchctl load -w ${HOME}/Library/LaunchAgents/com.bruno21.update-motd.plist
|
|
launchctl list | grep .update-motd
|
|
|
|
uninstall:
|
|
sudo launchctl unload -w ${HOME}/Library/LaunchAgents/com.bruno21.update-motd.plist
|
|
rm ${HOME}/Library/LaunchAgents/com.bruno21.update-motd.plist
|
|
launchctl list | grep update-motd || exit 0
|