Skip to content

Instantly share code, notes, and snippets.

@ejdyksen
Created October 28, 2014 19:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ejdyksen/c60e1aa1e4934ff32c36 to your computer and use it in GitHub Desktop.
Save ejdyksen/c60e1aa1e4934ff32c36 to your computer and use it in GitHub Desktop.
LaunchAgent plist for Chrome Kiosk mode
<?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>com.mutuallyhuman.radiator</string>
<key>Program</key>
<string>/Applications/Google Chrome.app/Contents/MacOS/Google Chrome</string>
<key>ProgramArguments</key>
<array>
<string>/Applications/Google Chrome.app/Contents/MacOS/Google Chrome</string>
<string>--kiosk</string>
<string>https://www.google.com/</string>
</array>
<key>KeepAlive</key>
<true/>
<key>WorkingDirectory</key>
<string>/Applications/Google Chrome.app/Contents/MacOS</string>
<key>RunAtLoad</key>
<true/>
<key>ServiceDescription</key>
<string>Dashboard Radiator</string>
</dict>
</plist>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment