pueue/utils/pueued.plist
Philipp Vincent Ebert c7767d458d
Added pueued.plist
Added pueued.plist file which contains comments on how to launch the daemon on macOS with launchd.
2023-04-13 18:35:03 +02:00

24 lines
862 B
Plaintext

<?xml version="1.0" encoding="UTF-8"?>
<!-- This is the plist file for the pueue daemon on macos -->
<!-- Place pueued.plist in ~/Library/LaunchAgents -->
<!-- To enable the daemon navigate into the directory `cd ~/Library/LaunchAgents` and type `launchctl load pueued.plist` -->
<!-- To start the daemon type `launchctl start pueued` -->
<!-- If you want to check that the daemon is running type `launchctl list | grep pueued` -->
<!-- You have to change the program location, if pueue is not installed with homebrew -->
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>pueued</string>
<key>ProgramArguments</key>
<array>
<string>/opt/homebrew/bin/pueued</string>
<string>-vv</string>
</array>
<key>RunAtLoad</key>
<true/>
</dict>
</plist>