macOS settings script

This commit is contained in:
James Walker 2018-10-05 12:44:52 -04:00
parent f713e5c6f0
commit 2db97384c7
Signed by: walkah
GPG Key ID: 3C127179D6086E93

13
home/bin/macos.sh Executable file
View File

@ -0,0 +1,13 @@
#!/bin/sh
# Dock settings
defaults write com.apple.dock 'orientation' -string 'left'
defaults write com.apple.dock autohide -bool true
killall Dock
# Finder settings
defaults write com.apple.finder ShowExternalHardDrivesOnDesktop -bool true
defaults write com.apple.finder ShowHardDrivesOnDesktop -bool true
defaults write com.apple.finder ShowMountedServersOnDesktop -bool true
defaults write com.apple.finder ShowRemovableMediaOnDesktop -bool true
killall Finder