Skip to content
This repository has been archived by the owner on Dec 12, 2023. It is now read-only.

App Config

Clayton Burlison edited this page May 24, 2016 · 6 revisions

Imagr gets its workflows from a plist that is accessible over HTTP. To locate the workflow config plist the serverurl key must to be set in your application config. This URL will be looked for in the following locations (from top to bottom):

  • ~/Library/Preferences/com.grahamgilbert.Imagr.plist
  • /Library/Preferences/com.grahamgilbert.Imagr.plist
  • /System/Installation/Packages/com.grahamgilbert.Imagr.plist

Sample com.grahamgilbert.Imagr.plist:

<?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>serverurl</key>
  <string>http://192.168.178.135/imagr_config.plist</string>
</dict>
</plist>

The contents of the workflow configuration, imagr_config.plist, can be found here.

To configure a reporting server, see the Reporting section.

To modify the default background image setting, see the Background Image section.