Skip to content

Instantly share code, notes, and snippets.

@rtrouton
Created January 4, 2014 22:54
Show Gist options
  • Save rtrouton/8261882 to your computer and use it in GitHub Desktop.
Save rtrouton/8261882 to your computer and use it in GitHub Desktop.
Launch Chrome in kiosk mode, disable the first run and default browser checks, and go to http://www.google.com.
<?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>KeepAlive</key>
<true/>
<key>Label</key>
<string>com.company.chrome_kiosk</string>
<key>ProgramArguments</key>
<array>
<string>/Applications/Google Chrome.app/Contents/MacOS/Google Chrome</string>
<string>-cancel-first-run</string>
<string>-no-default-browser-check</string>
<string>-kiosk</string>
<string>http://www.google.com</string>
</array>
<key>QueueDirectories</key>
<array/>
<key>WatchPaths</key>
<array/>
</dict>
</plist>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment