Skip to content

Instantly share code, notes, and snippets.

@shichao-an
Created April 24, 2018 00:56
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 shichao-an/59f1eed1f15a56581c2d7ace0609ad88 to your computer and use it in GitHub Desktop.
Save shichao-an/59f1eed1f15a56581c2d7ace0609ad88 to your computer and use it in GitHub Desktop.
Create a Downloads directory on macOS startup/login
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.user.loginscript</string>
<key>ProgramArguments</key>
<array>
<string>/bin/mkdir</string>
<string>-p</string>
<string>/private/tmp/Downloads</string>
</array>
<key>RunAtLoad</key>
<true/>
</dict>
</plist>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment