Created
October 28, 2014 19:19
-
-
Save ejdyksen/c60e1aa1e4934ff32c36 to your computer and use it in GitHub Desktop.
LaunchAgent plist for Chrome Kiosk mode
This file contains hidden or 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
<?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