-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add various convenience options for brew formulae #9
- Loading branch information
1 parent
0dc59eb
commit 0d9b44c
Showing
3 changed files
with
30 additions
and
9 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
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
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 |
---|---|---|
@@ -1,22 +1,25 @@ | ||
<?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"> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>KeepAlive</key> | ||
<true/> | ||
<key>Label</key> | ||
<string>cc.chlc.batt</string> | ||
<!-- Make it interactive to avoid batt being stopped by macOS, which could cause malfunctions of batt. --> | ||
<key>ProcessType</key> | ||
<string>Interactive</string> | ||
<key>ProgramArguments</key> | ||
<array> | ||
<string>/path/to/batt</string> | ||
<string>daemon</string> | ||
<string>-l=debug</string> | ||
<string>--log-level=debug</string> | ||
</array> | ||
<key>StandardOutPath</key> | ||
<string>/tmp/batt.log</string> | ||
<key>StandardErrorPath</key> | ||
<string>/tmp/batt.log</string> | ||
<key>RunAtLoad</key> | ||
<true/> | ||
<key>KeepAlive</key> | ||
<true/> | ||
<key>StandardErrorPath</key> | ||
<string>/tmp/batt.log</string> | ||
<key>StandardOutPath</key> | ||
<string>/tmp/batt.log</string> | ||
</dict> | ||
</plist> |