-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.sh
executable file
·33 lines (24 loc) · 1.17 KB
/
settings.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/bin/sh
defaults write com.apple.finder AppleShowAllExtensions -bool true
defaults write com.apple.dock autohide -bool true
defaults write com.apple.dock largesize -int 90
defaults write com.apple.dock magnification -bool true
defaults write com.apple.dock show-recents -bool false
# Enable option to show battery number
defaults write com.apple.menuextra.battery ShowPercent -bool true
# Enable single-tap on trackpad
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad Clicking -bool true
defaults write com.apple.AppleMultitouchTrackpad Clicking -bool true
# Change scrolling direction with mouse
defaults write com.apple.swipescrolldirection -bool false
# Make dock reveal faster
defaults write com.apple.dock autohide-delay -bool false
# Set corner shortcuts
defaults write com.apple.dock wvous-bl-corner -int 13 # Lock screen
defaults write com.apple.dock wvous-br-corner -int 0 # No option
defaults write com.apple.dock wvous-tl-corner -int 0 # No option
defaults write com.apple.dock wvous-tr-corner -int 12 # Open notification center
# Reduce item width in menu bar
defaults -currentHost write -globalDomain NSStatusItemSpacing -int 8
# Restart the dock
killall Dock