如何让你的程序,在OSX中开机启动
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何让你的程序,在OSX中开机启动相关的知识,希望对你有一定的参考价值。
让你的程序在OSX中自动启动,是一件非常简单的事,只需要做一些简单的配置,它跟你的程序用什么样的语言并没有什么关系。第一步:创建plist配置文件,并将它存储在
~/Library/LaunchAgents/com.inmix.word.osx.plist
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC -//Apple Computer//DTD PLIST 1.0//EN http://www.apple.com/DTDs/PropertyList-1.0.dtd >
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.inmix.word.osx</string>
<key>Program</key>
<string>你的应用程序路径</string>
<key>KeepAlive</key>
<true/>
</dict>
</plist>
第二步测试你的守护进程
- 启动
launchctl load ~/Library/LaunchAgents/com.inmix.word.osx.plist
- 结束
launchctl unload ~/Library/LaunchAgents/com.inmix.word.osx.plist
以上是关于如何让你的程序,在OSX中开机启动的主要内容,如果未能解决你的问题,请参考以下文章