https://www.titanium-software.fr/en/deeper.html
https://scriptingosx.com/2018/10/changing-a-users-login-picture/
ohmyzsh/ohmyzsh#6713,
https://www.youtube.com/watch?v=EVlc5G3TzYE
https://www.youtube.com/watch?v=F-7s8NOLoPQ
https://gist.github.com/aelkz/f087f7279f3247e0d16132639d75c3f8
https://redhat.service-now.com/rh_ess/kb_view.do?sys_kb_id=d5a3e7da4fc38200d2c390918110c7bf&sysparm_language=&sysparm_nameofstack=&sysparm_kb_search_table=&sysparm_search=https://redhat.service-now.com/help?id=kb_article&sysparm_article=KB0005420
https://www.maketecheasier.com/fix-home-end-button-for-external-keyboard-mac/
https://discussions.apple.com/thread/8555674
https://codeburst.io/8-must-know-terminal-commands-and-tips-for-productivity-mac-edition-95935dba3ebc
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
| Code | Terminology | Kind | Usage | Line | |
|---|---|---|---|---|---|
| $scr | scripting additions folder | Property of class: domain | System Events : Disk-Folder-File Suite | 1 | |
| %doc | music folder | Property of class: user domain object | System Events : Disk-Folder-File Suite | 2 | |
| µdoc | music folder | Enumeration | Standard Additions : File Commands | 3 | |
| ƒhlp | help | Enumeration | Standard Additions : File Commands | 4 | |
| ƒhlp | help folder | Enumeration | Standard Additions : File Commands | 5 | |
| ƒlib | shared libraries | Enumeration | Standard Additions : File Commands | 6 | |
| ƒlib | shared libraries folder | Enumeration | Standard Additions : File Commands | 7 | |
| ƒmod | modem scripts | Enumeration | Standard Additions : File Commands | 8 | |
| ƒmod | modem scripts folder | Enumeration | Standard Additions : File Commands | 9 |
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
| #!/bin/bash | |
| /usr/bin/defaults write /Library/Preferences/com.apple.SoftwareUpdate.plist AutomaticCheckEnabled -bool TRUE | |
| /usr/bin/defaults write /Library/Preferences/com.apple.SoftwareUpdate.plist AutomaticDownload -bool TRUE | |
| /usr/bin/defaults write /Library/Preferences/com.apple.SoftwareUpdate.plist AutomaticallyInstallMacOSUpdates -bool TRUE | |
| /usr/bin/defaults write /Library/Preferences/com.apple.SoftwareUpdate.plist ConfigDataInstall -bool TRUE | |
| /usr/bin/defaults write /Library/Preferences/com.apple.SoftwareUpdate.plist CriticalUpdateInstall -bool TRUE | |
| /usr/bin/defaults write /Library/Preferences/com.apple.commerce.plist AutoUpdate -bool TRUE | |
| exit 0 |
As of January 2020, all apps running on macOs 10.15 Catalina are required to be notarized. For Unity games distributed outside the Mac App Store, such as with Steam, the notarization process is done post build using a series of Xcode command line tools.
- a Mac that is compatible with macOs 10.15 Catalina :
- MacBook (2015 or newer)
- MacBook Air (2012 or newer)
- MacBook Pro (2012 or newer)
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
| #!/bin/bash | |
| # This script is designed to be run as root, perhaps by a management tool | |
| # It takes one argument, a path to an app to be launched (or a name of an app, | |
| # if you don't mind LaunchServices deciding which if any app to launch) | |
| # | |
| # If the current console user is not a member of the admin group, the user will | |
| # be added to to the group. The app will then be launched in the console user's | |
| # context. | |
| # When the app exits (or this script is killed via SIGINT), if we had promoted |
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
| #!/bin/bash | |
| <<ABOUT_THIS_SCRIPT | |
| ------------------------------------------------------------------------------- | |
| Written by:William Smith | |
| Professional Services Engineer | |
| Jamf | |
| [email protected] | |
| https://gist.github.com/2cf20236e665fcd7ec41311d50c89c0e |
OlderNewer