Created
April 24, 2018 00:56
-
-
Save shichao-an/59f1eed1f15a56581c2d7ace0609ad88 to your computer and use it in GitHub Desktop.
Create a Downloads directory on macOS startup/login
This file contains 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
<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