File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -10,17 +10,20 @@ if [[ -z "${CI}" ]]; then
10
10
while true ; do sudo -n true ; sleep 60; kill -0 " $$ " || exit ; done 2> /dev/null &
11
11
fi
12
12
13
+ # Close any open System Preferences panes, to prevent them from overriding settings we’re about to change
14
+ osascript -e ' tell application "System Preferences" to quit'
15
+
13
16
# Trackpad: enable tap to click for this user and for the login screen
14
17
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad Clicking -bool true
15
18
defaults -currentHost write NSGlobalDomain com.apple.mouse.tapBehavior -int 1
16
19
defaults write NSGlobalDomain com.apple.mouse.tapBehavior -int 1
17
20
21
+ # Screenshot: Show for 30s
22
+ defaults write com.apple.screencaptureui " thumbnailExpiration" -float 30
23
+
18
24
# Disable the sound effects on boot
19
25
sudo nvram SystemAudioVolume=" "
20
26
21
- # Close any open System Preferences panes, to prevent them from overriding settings we’re about to change
22
- osascript -e ' tell application "System Preferences" to quit'
23
-
24
27
# Expand save panel by default
25
28
defaults write NSGlobalDomain NSNavPanelExpandedStateForSaveMode -bool true
26
29
defaults write NSGlobalDomain NSNavPanelExpandedStateForSaveMode2 -bool true
You can’t perform that action at this time.
0 commit comments