Last active
December 12, 2015 09:08
Revisions
-
evilmarty revised this gist
Mar 5, 2013 . 1 changed file with 10 additions and 4 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 charactersOriginal file line number Diff line number Diff line change @@ -4,14 +4,20 @@ <dict> <key>Label</key> <string>homebrew.mxcl.update</string> <key>ProgramArguments</key> <array> <string>brew</string> <string>update</string> </array> <key>StartCalendarInterval</key> <dict> <key>Minute</key> <integer>0</integer> <key>Hour</key> <integer>3</integer> <key>Weekday</key> <integer>1</integer> </dict> <key>StartInterval</key> <integer>604800</integer> </dict> -
evilmarty revised this gist
Feb 11, 2013 . 1 changed file with 1 addition and 1 deletion.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 charactersOriginal file line number Diff line number Diff line change @@ -1 +1 @@ Simply add this to `~/Library/LaunchAgents/homebrew.mxcl.update.plist` and run `launchctl load ~/Library/LaunchAgents/homebrew.mxcl.update.plist`. -
evilmarty revised this gist
Feb 10, 2013 . 1 changed file with 1 addition 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1 @@ Simply add this to `~/Library/LaunchAgents/` and run `launchctl load ~/Library/LaunchAgents/homebrew.mxcl.update.plist`. -
evilmarty created this gist
Feb 10, 2013 .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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,18 @@ <?xml version="1.0" encoding="UTF-8"?> <!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>homebrew.mxcl.update</string> <key>Program</key> <string>brew</string> <key>ProgramArguments</key> <array> <string>update</string> </array> <key>RunAtLoad</key> <true/> <key>StartInterval</key> <integer>604800</integer> </dict> </plist>