-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #429 from PhilVince96/feature-daemon-macOS
Added pueued.plist to support daemon with launchd on macOS
- Loading branch information
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?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> |