Skip to content

Commit

Permalink
Added pueued.plist
Browse files Browse the repository at this point in the history
Added pueued.plist file which contains comments on how to launch the daemon on macOS with launchd.
  • Loading branch information
PhilVince96 committed Apr 13, 2023
1 parent 22d3a8c commit c7767d4
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions utils/pueued.plist
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>

0 comments on commit c7767d4

Please sign in to comment.