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
| #!/usr/bin/env bash | |
| # Modified from: https://akrabat.com/prevent-an-external-drive-from-auto-mounting-on-macos/ | |
| # Prevent external drives from auto-mounting on macOS | |
| FSTAB=/etc/fstab | |
| # Add a volume as not auto-mounted to the /etc/fstab file | |
| # by its identifier. Also pass in the volume name to add a |
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
| """ | |
| This file is executed when the Python interactive shell is started if | |
| $PYTHONSTARTUP is in your environment and points to this file. It's just | |
| regular Python commands, so do what you will. Your ~/.inputrc file can greatly | |
| complement this file. | |
| Modified from sontek's dotfiles repo on github: | |
| https://github.com/sontek/dotfiles | |
| """ |