Last active
September 12, 2020 15:17
-
-
Save pythoninthegrass/b90168acc0f59477f62b49badaf3f15a to your computer and use it in GitHub Desktop.
Mac Setup
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 | |
# SOURCES: | |
# https://gist.github.com/DylanTackoor/7a04052cfc3a726d9af6f798875189fc | |
# https://github.com/timsutton/osx-vm-templates/blob/ce8df8a7468faa7c5312444ece1b977c1b2f77a4/scripts/xcode-cli-tools.sh | |
# https://github.com/mathiasbynens/dotfiles/blob/master/.macos | |
# Exit upon failed command | |
# set -e | |
# Logs | |
logTime=$(date +%Y-%m-%d:%H:%M:%S) | |
setupLog="/tmp/$(basename "$0" | cut -d. -f1)_$logTime.log" | |
exec &> >(tee -a "$setupLog") | |
# Current user | |
loggedInUser=$(ls -l /dev/console | cut -d " " -f 4) | |
# Working directory | |
scriptDir=$(cd "$(dirname "$0")" && pwd) | |
# Ask for the administrator password upfront | |
# sudo -v | |
# Keep-alive: update existing `sudo` time stamp until script has finished | |
while true; do sudo -n true; sleep 60; kill -0 "$$" || exit; done 2>/dev/null & | |
# # Keeping Mac awake for one hour | |
# caffeinate -d 3600 & | |
# Verify xcode cli tools are installed | |
# TODO: download PKG from developer.apple.com and install from SMB share | |
# 10.10 && 10.11 | |
# OSX_VERS=$(sw_vers -productVersion | awk -F "." '{print $2}') | |
# if [[ "$OSX_VERS" -ge 10 ]] && [[ "$OSX_VERS" -lt 12 ]]; then | |
# touch /tmp/.com.apple.dt.CommandLineTools.installondemand.in-progress # create the placeholder file that's checked by CLI updates' .dist code in Apple's SUS catalog | |
# PROD=$(softwareupdate -l | grep "\*.*Command Line" | head -n 1 | awk -F"*" '{print $2}' | sed -e 's/^ *//' | tr -d '\n') | |
# softwareupdate -i "$PROD" -v | |
# else | |
# # 10.12+ | |
# xpath=$(xcode-select --print-path) | |
# if [[ "$xpath" = "/Library/Developer/CommandLineTools" ]]; then | |
# echo "Found Xcode command-line tools" | |
# else | |
# xcode-select --install | |
# fi | |
# fi | |
# "Closing System Preferences if open..." | |
osascript -e 'tell application "System Preferences" to quit' | |
# Enable ssh # add error handling later | |
/usr/sbin/systemsetup -f -setremotelogin on | |
# "Disabling Gatekeeper..." | |
spctl --master-disable | |
spctl --status | |
defaults write /Library/Preferences/com.apple.security GKAutoRearm -bool false | |
# "Setting lockscreen message..." | |
# sudo defaults write /Library/Preferences/com.apple.loginwindow LoginwindowText "This Mac belongs to The Idea Center @ MDC. Contact us at [email protected]." | |
# "Disabling automatically rearranging spaces..." | |
defaults write com.apple.dock mru-spaces -bool false | |
# "Enabling Ctrl + scroll to zoom screen..." | |
# defaults write com.apple.universalaccess closeViewScrollWheelToggle -bool true | |
# defaults write com.apple.universalaccess HIDScrollZoomModifierMask -int 262144 | |
# "Disabling Dashboard..." | |
# defaults write com.apple.dashboard mcx-disabled -bool true | |
# defaults write com.apple.dock dashboard-in-overlay -bool true | |
# "Column view by default..." | |
defaults write com.apple.Finder FXPreferredViewStyle clmv | |
# # "Setting wallpaper..." | |
# cd ~/Pictures/Wallpapers/ || exit | |
# wget https://pbs.twimg.com/profile_images/512339511234138112/e8kahiP9.jpeg | |
# mv e8kahiP9.jpeg tic.jpeg | |
# sudo osascript -e ' | |
# tell application "System Events" | |
# set theDesktops to a reference to every desktop | |
# repeat with x from 1 to (count theDesktops) | |
# set picture of item x of the theDesktops to "~/Pictures/Wallpapers/tic.jpeg" | |
# end repeat | |
# end tell | |
# ' | |
# "Updating system..." | |
softwareupdate -l && softwareupdate -i | |
# "Signing into Mac App Store..." | |
# Username input | |
# echo -n 'Apple ID: ' | |
# read username | |
# Password input | |
# echo -n 'Password: ' | |
# read -s password #The -s means silent, so your password is not shown in the terminal. | |
# mas signin [email protected] #"passwordInQuotes" | |
# mas signin $username "$password" | |
# "Updating Mac App Store apps..." | |
# mas upgrade | |
# "Installing Mac App Store apps..." | |
# mas install 408981434 #iMovie | |
# "Setting up SSH key..." | |
# ssh-keygen -t rsa | |
# "Installing Atom plugins..." | |
# apm install file-icons pigments less-than-slash highlight-selected autocomplete-modules atom-beautify auto-update-packages color-picker todo-show git-time-machine | |
# apm install language-babel atom-typescript sass-autocompile language-ejs language-htaccess | |
# apm install linter linter-tidy linter-csslint linter-php linter-scss-lint linter-clang linter-tslint linter-jsonlint linter-pylint linter-shellcheck linter-handlebars | |
# apm install minimap minimap-highlight-selected minimap-find-and-replace minimap-pigments minimap-linter | |
#Check the Hide Ignored Names from your file tree so that .DS_Store and .git don't appear needlessly. | |
# Reorg dock | |
# echo "Reorganizing dock..." | |
# sudo dockutil --remove 'Contacts' --allhomes | |
# sudo dockutil --remove 'Calendar' --allhomes | |
# sudo dockutil --remove 'Notes' --allhomes | |
# sudo dockutil --remove 'FaceTime' --allhomes | |
# sudo dockutil --remove 'iPhoto' --allhomes | |
# sudo dockutil --remove 'iBooks' --allhomes | |
# sudo dockutil --add /Applications/Chrome.app --after 'Safari' --allhomes | |
# /u/mathiasbynens' cherry-picked dotfiles | |
# Disable transparency in the menu bar and elsewhere on Yosemite | |
defaults write com.apple.universalaccess reduceTransparency -bool true | |
# Always show scrollbars | |
defaults write NSGlobalDomain AppleShowScrollBars -string "Always" | |
# Possible values: `WhenScrolling`, `Automatic` and `Always` | |
# Save to disk (not to iCloud) by default | |
defaults write NSGlobalDomain NSDocumentSaveNewDocumentsToCloud -bool false | |
# Automatically quit printer app once the print jobs complete | |
defaults write com.apple.print.PrintingPrefs "Quit When Finished" -bool true | |
# Disable the “Are you sure you want to open this application?” dialog | |
defaults write com.apple.LaunchServices LSQuarantine -bool false | |
# Reveal IP address, hostname, OS version, etc. when clicking the clock | |
# in the login window | |
sudo defaults write /Library/Preferences/com.apple.loginwindow AdminHostInfo HostName | |
# Restart automatically if the computer freezes | |
sudo systemsetup -setrestartfreeze on | |
# Never go into computer sleep mode | |
# sudo systemsetup -setcomputersleep Off > /dev/null | |
# Disable automatic capitalization as it’s annoying when typing code | |
defaults write NSGlobalDomain NSAutomaticCapitalizationEnabled -bool false | |
# Disable smart dashes as they’re annoying when typing code | |
defaults write NSGlobalDomain NSAutomaticDashSubstitutionEnabled -bool false | |
# Disable automatic period substitution as it’s annoying when typing code | |
defaults write NSGlobalDomain NSAutomaticPeriodSubstitutionEnabled -bool false | |
# Disable smart quotes as they’re annoying when typing code | |
defaults write NSGlobalDomain NSAutomaticQuoteSubstitutionEnabled -bool false | |
# Disable auto-correct | |
defaults write NSGlobalDomain NSAutomaticSpellingCorrectionEnabled -bool false | |
############################################################################### | |
# SSD-specific tweaks # | |
############################################################################### | |
# Danger zone (read: only enable on _my_ machines) | |
# Disable hibernation (speeds up entering sleep mode) | |
# sudo pmset -a hibernatemode 0 | |
# Remove the sleep image file to save disk space | |
# sudo rm /private/var/vm/sleepimage | |
# Create a zero-byte file instead… | |
# sudo touch /private/var/vm/sleepimage | |
# …and make sure it can’t be rewritten | |
# sudo chflags uchg /private/var/vm/sleepimage | |
############################################################################### | |
# Trackpad, mouse, keyboard, Bluetooth accessories, and input # | |
############################################################################### | |
# Disable “natural” (Lion-style) scrolling | |
defaults write NSGlobalDomain com.apple.swipescrolldirection -bool false | |
# Increase sound quality for Bluetooth headphones/headsets # subjective | |
# defaults write com.apple.BluetoothAudioAgent "Apple Bitpool Min (editable)" -int 40 | |
# Enable full keyboard access for all controls | |
# (e.g. enable Tab in modal dialogs) | |
defaults write NSGlobalDomain AppleKeyboardUIMode -int 3 | |
############################################################################### | |
# Screen # | |
############################################################################### | |
# Require password immediately after sleep or screen saver begins | |
defaults write com.apple.screensaver askForPassword -int 1 | |
defaults write com.apple.screensaver askForPasswordDelay -int 0 | |
# Enable subpixel font rendering on non-Apple LCDs | |
# Reference: https://github.com/kevinSuttle/macOS-Defaults/issues/17#issuecomment-266633501 | |
defaults write NSGlobalDomain AppleFontSmoothing -int 1 | |
# Enable HiDPI display modes (requires restart) | |
# sudo defaults write /Library/Preferences/com.apple.windowserver DisplayResolutionEnabled -bool true | |
############################################################################### | |
# Finder # | |
############################################################################### | |
# Finder: disable window animations and Get Info animations | |
# defaults write com.apple.finder DisableAllAnimations -bool true | |
# Set Desktop as the default location for new Finder windows >> changed to Home | |
# For other paths, use `PfLo` and `file:///full/path/here/` | |
# defaults write com.apple.finder NewWindowTarget -string "PfDe" | |
defaults write com.apple.finder NewWindowTarget -string "PfLo" | |
defaults write com.apple.finder NewWindowTargetPath -string "file://${HOME}" | |
# Show icons for hard drives, servers, and removable media on the desktop | |
defaults write com.apple.finder ShowExternalHardDrivesOnDesktop -bool true | |
defaults write com.apple.finder ShowHardDrivesOnDesktop -bool false | |
defaults write com.apple.finder ShowMountedServersOnDesktop -bool false | |
defaults write com.apple.finder ShowRemovableMediaOnDesktop -bool true | |
# Finder: show hidden files by default | |
#defaults write com.apple.finder AppleShowAllFiles -bool true | |
# Finder: show all filename extensions | |
defaults write NSGlobalDomain AppleShowAllExtensions -bool true | |
# Finder: show status bar | |
defaults write com.apple.finder ShowStatusBar -bool true | |
# Finder: show path bar | |
defaults write com.apple.finder ShowPathbar -bool true | |
# Display full POSIX path as Finder window title | |
defaults write com.apple.finder _FXShowPosixPathInTitle -bool true | |
# Keep folders on top when sorting by name | |
defaults write com.apple.finder _FXSortFoldersFirst -bool true | |
# When performing a search, search the current folder by default | |
defaults write com.apple.finder FXDefaultSearchScope -string "SCcf" | |
# Disable the warning when changing a file extension # danger zone | |
# defaults write com.apple.finder FXEnableExtensionChangeWarning -bool false | |
# Avoid creating .DS_Store files on network or USB volumes | |
defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool true | |
defaults write com.apple.desktopservices DSDontWriteUSBStores -bool true | |
# Disable disk image verification | |
defaults write com.apple.frameworks.diskimages skip-verify -bool true | |
defaults write com.apple.frameworks.diskimages skip-verify-locked -bool true | |
defaults write com.apple.frameworks.diskimages skip-verify-remote -bool true | |
# Use column view in all Finder windows by default | |
# Four-letter codes for the other view modes: `icnv`, `clmv`, `Flwv` | |
defaults write com.apple.finder FXPreferredViewStyle -string "clmv" | |
# Disable the warning before emptying the Trash # danger zone | |
# defaults write com.apple.finder WarnOnEmptyTrash -bool false | |
# Enable AirDrop over Ethernet and on unsupported Macs running Lion | |
defaults write com.apple.NetworkBrowser BrowseAllInterfaces -bool true | |
# Show the ~/Library folder | |
chflags nohidden ~/Library | |
# Show the /Volumes folder | |
sudo chflags nohidden /Volumes | |
# Expand the following File Info panes: | |
# “General”, “Open with”, and “Sharing & Permissions” | |
defaults write com.apple.finder FXInfoPanesExpanded -dict \ | |
General -bool true \ | |
OpenWith -bool true \ | |
Privileges -bool true | |
############################################################################### | |
# Dock, Dashboard, and hot corners # | |
############################################################################### | |
# Change minimize/maximize window effect | |
defaults write com.apple.dock mineffect -string "scale" | |
# Minimize windows into their application’s icon | |
defaults write com.apple.dock minimize-to-application -bool true | |
# Show indicator lights for open applications in the Dock | |
defaults write com.apple.dock show-process-indicators -bool true | |
# Wipe all (default) app icons from the Dock | |
# This is only really useful when setting up a new Mac, or if you don’t use | |
# the Dock to launch apps. | |
#defaults write com.apple.dock persistent-apps -array | |
# Speed up Mission Control animations | |
defaults write com.apple.dock expose-animation-duration -float 0.1 | |
# Don’t group windows by application in Mission Control | |
# (i.e. use the old Exposé behavior instead) | |
defaults write com.apple.dock expose-group-by-app -bool false | |
# Disable Dashboard # danger zone | |
# defaults write com.apple.dashboard mcx-disabled -bool true | |
# Don’t show Dashboard as a Space | |
defaults write com.apple.dock dashboard-in-overlay -bool true | |
# Don’t automatically rearrange Spaces based on most recent use | |
defaults write com.apple.dock mru-spaces -bool false | |
# Hot corners # danger zone | |
# Possible values: | |
# 0: no-op | |
# 2: Mission Control | |
# 3: Show application windows | |
# 4: Desktop | |
# 5: Start screen saver | |
# 6: Disable screen saver | |
# 7: Dashboard | |
# 10: Put display to sleep | |
# 11: Launchpad | |
# 12: Notification Center | |
# Top left screen corner → Mission Control | |
# defaults write com.apple.dock wvous-tl-corner -int 2 | |
# defaults write com.apple.dock wvous-tl-modifier -int 0 | |
# Top right screen corner → Desktop | |
# defaults write com.apple.dock wvous-tr-corner -int 4 | |
# defaults write com.apple.dock wvous-tr-modifier -int 0 | |
# Bottom left screen corner → Start screen saver | |
# defaults write com.apple.dock wvous-bl-corner -int 5 | |
# defaults write com.apple.dock wvous-bl-modifier -int 0 | |
############################################################################### | |
# Safari & WebKit # | |
############################################################################### | |
# Privacy: don’t send search queries to Apple | |
defaults write com.apple.Safari UniversalSearchEnabled -bool false | |
defaults write com.apple.Safari SuppressSearchSuggestions -bool true | |
# Show the full URL in the address bar (note: this still hides the scheme) | |
defaults write com.apple.Safari ShowFullURLInSmartSearchField -bool true | |
# Set Safari’s home page to `about:blank` for faster loading | |
defaults write com.apple.Safari HomePage -string "about:blank" | |
# Enable the Develop menu and the Web Inspector in Safari | |
defaults write com.apple.Safari IncludeDevelopMenu -bool true | |
defaults write com.apple.Safari WebKitDeveloperExtrasEnabledPreferenceKey -bool true | |
defaults write com.apple.Safari com.apple.Safari.ContentPageGroupIdentifier.WebKit2DeveloperExtrasEnabled -bool true | |
# Enable continuous spellchecking | |
defaults write com.apple.Safari WebContinuousSpellCheckingEnabled -bool true | |
# Disable auto-correct | |
defaults write com.apple.Safari WebAutomaticSpellingCorrectionEnabled -bool false | |
# Disable AutoFill | |
defaults write com.apple.Safari AutoFillFromAddressBook -bool false | |
defaults write com.apple.Safari AutoFillPasswords -bool false | |
defaults write com.apple.Safari AutoFillCreditCardData -bool false | |
defaults write com.apple.Safari AutoFillMiscellaneousForms -bool false | |
# Warn about fraudulent websites | |
defaults write com.apple.Safari WarnAboutFraudulentWebsites -bool true | |
# Enable “Do Not Track” | |
defaults write com.apple.Safari SendDoNotTrackHTTPHeader -bool true | |
# Update extensions automatically | |
defaults write com.apple.Safari InstallExtensionUpdatesAutomatically -bool true | |
############################################################################### | |
# Mail # | |
############################################################################### | |
# Disable send and reply animations in Mail.app | |
defaults write com.apple.mail DisableReplyAnimations -bool true | |
defaults write com.apple.mail DisableSendAnimations -bool true | |
# Copy email addresses as `[email protected]` instead of `Foo Bar <[email protected]>` in Mail.app | |
defaults write com.apple.mail AddressesIncludeNameOnPasteboard -bool false | |
# Disable automatic spell checking | |
defaults write com.apple.mail SpellCheckingBehavior -string "NoSpellCheckingEnabled" | |
############################################################################### | |
# Terminal & iTerm 2 # | |
############################################################################### | |
# Only use UTF-8 in Terminal.app | |
defaults write com.apple.terminal StringEncodings -array 4 | |
# Use a modified version of the Solarized Dark theme by default in Terminal.app | |
osascript <<EOD | |
tell application "Terminal" | |
local allOpenedWindows | |
local initialOpenedWindows | |
local windowID | |
set themeName to "Solarized Dark xterm-256color" | |
(* Store the IDs of all the open terminal windows. *) | |
set initialOpenedWindows to id of every window | |
(* Open the custom theme so that it gets added to the list | |
of available terminal themes (note: this will open two | |
additional terminal windows). *) | |
do shell script "open '$HOME/init/" & themeName & ".terminal'" | |
(* Wait a little bit to ensure that the custom theme is added. *) | |
delay 1 | |
(* Set the custom theme as the default terminal theme. *) | |
set default settings to settings set themeName | |
(* Get the IDs of all the currently opened terminal windows. *) | |
set allOpenedWindows to id of every window | |
repeat with windowID in allOpenedWindows | |
(* Close the additional windows that were opened in order | |
to add the custom theme to the list of terminal themes. *) | |
if initialOpenedWindows does not contain windowID then | |
close (every window whose id is windowID) | |
(* Change the theme for the initial opened terminal windows | |
to remove the need to close them in order for the custom | |
theme to be applied. *) | |
else | |
set current settings of tabs of (every window whose id is windowID) to settings set themeName | |
end if | |
end repeat | |
end tell | |
EOD | |
# Enable Secure Keyboard Entry in Terminal.app | |
# See: https://security.stackexchange.com/a/47786/8918 | |
defaults write com.apple.terminal SecureKeyboardEntry -bool true | |
# Install the Solarized Dark theme for iTerm | |
open "${HOME}/init/Solarized Dark.itermcolors" | |
# Don’t display the annoying prompt when quitting iTerm | |
defaults write com.googlecode.iterm2 PromptOnQuit -bool false | |
############################################################################### | |
# Time Machine # | |
############################################################################### | |
# Prevent Time Machine from prompting to use new hard drives as backup volume | |
defaults write com.apple.TimeMachine DoNotOfferNewDisksForBackup -bool true | |
# Disable local Time Machine backups # danger zone | |
# hash tmutil &> /dev/null && sudo tmutil disablelocal | |
############################################################################### | |
# Activity Monitor # | |
############################################################################### | |
# Show the main window when launching Activity Monitor | |
defaults write com.apple.ActivityMonitor OpenMainWindow -bool true | |
# Visualize CPU usage in the Activity Monitor Dock icon | |
defaults write com.apple.ActivityMonitor IconType -int 5 | |
# Show all processes in Activity Monitor | |
defaults write com.apple.ActivityMonitor ShowCategory -int 0 | |
# Sort Activity Monitor results by CPU usage | |
defaults write com.apple.ActivityMonitor SortColumn -string "CPUUsage" | |
defaults write com.apple.ActivityMonitor SortDirection -int 0 | |
############################################################################### | |
# Address Book, Dashboard, iCal, TextEdit, and Disk Utility # | |
############################################################################### | |
# Enable the debug menu in Address Book | |
defaults write com.apple.addressbook ABShowDebugMenu -bool true | |
# Enable Dashboard dev mode (allows keeping widgets on the desktop) | |
defaults write com.apple.dashboard devmode -bool true | |
# Enable the debug menu in iCal (pre-10.8) | |
defaults write com.apple.iCal IncludeDebugMenu -bool true | |
# Use plain text mode for new TextEdit documents | |
defaults write com.apple.TextEdit RichText -int 0 | |
# Open and save files as UTF-8 in TextEdit | |
defaults write com.apple.TextEdit PlainTextEncoding -int 4 | |
defaults write com.apple.TextEdit PlainTextEncodingForWrite -int 4 | |
# Enable the debug menu in Disk Utility | |
defaults write com.apple.DiskUtility DUDebugMenuEnabled -bool true | |
defaults write com.apple.DiskUtility advanced-image-options -bool true | |
# Auto-play videos when opened with QuickTime Player | |
defaults write com.apple.QuickTimePlayerX MGPlayMovieOnOpen -bool true | |
############################################################################### | |
# Mac App Store # | |
############################################################################### | |
# Enable the WebKit Developer Tools in the Mac App Store | |
# defaults write com.apple.appstore WebKitDeveloperExtras -bool true | |
# Enable Debug Menu in the Mac App Store | |
# defaults write com.apple.appstore ShowDebugMenu -bool true | |
# Enable the automatic update check | |
defaults write com.apple.SoftwareUpdate AutomaticCheckEnabled -bool true | |
# Check for software updates daily, not just once per week | |
defaults write com.apple.SoftwareUpdate ScheduleFrequency -int 1 | |
# Download newly available updates in background | |
defaults write com.apple.SoftwareUpdate AutomaticDownload -int 1 | |
# Install System data files & security updates | |
defaults write com.apple.SoftwareUpdate CriticalUpdateInstall -int 1 | |
# Automatically download apps purchased on other Macs | |
# defaults write com.apple.SoftwareUpdate ConfigDataInstall -int 1 | |
# Turn on app auto-update # danger zone | |
# defaults write com.apple.commerce AutoUpdate -bool true | |
# Allow the App Store to reboot machine on macOS updates # danger zone | |
# defaults write com.apple.commerce AutoUpdateRestartRequired -bool true | |
############################################################################### | |
# Photos # | |
############################################################################### | |
# Prevent Photos from opening automatically when devices are plugged in | |
defaults -currentHost write com.apple.ImageCapture disableHotPlug -bool true | |
############################################################################### | |
# Google Chrome & Google Chrome Canary # | |
############################################################################### | |
# Disable the all too sensitive backswipe on trackpads | |
# defaults write com.google.Chrome AppleEnableSwipeNavigateWithScrolls -bool false | |
# defaults write com.google.Chrome.canary AppleEnableSwipeNavigateWithScrolls -bool false | |
# Disable the all too sensitive backswipe on Magic Mouse | |
# defaults write com.google.Chrome AppleEnableMouseSwipeNavigateWithScrolls -bool false | |
# defaults write com.google.Chrome.canary AppleEnableMouseSwipeNavigateWithScrolls -bool false | |
# Use the system-native print preview dialog | |
defaults write com.google.Chrome DisablePrintPreview -bool true | |
defaults write com.google.Chrome.canary DisablePrintPreview -bool true | |
# Expand the print dialog by default | |
defaults write com.google.Chrome PMPrintingExpandedStateForPrint2 -bool true | |
defaults write com.google.Chrome.canary PMPrintingExpandedStateForPrint2 -bool true | |
############################################################################### | |
# Kill affected applications # | |
############################################################################### | |
for app in "Activity Monitor" \ | |
"Address Book" \ | |
"Calendar" \ | |
"cfprefsd" \ | |
"Contacts" \ | |
"Dock" \ | |
"Finder" \ | |
"Google Chrome Canary" \ | |
"Google Chrome" \ | |
"Mail" \ | |
"Photos" \ | |
"Safari" \ | |
"SystemUIServer" \ | |
"Terminal" \ | |
"iCal"; do | |
killall "${app}" &> /dev/null | |
done | |
echo "Done. Note that some of these changes require a logout/restart to take effect." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment