-
Notifications
You must be signed in to change notification settings - Fork 0
/
executable_dot_macos
89 lines (57 loc) · 2.6 KB
/
executable_dot_macos
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#!/usr/bin/env bash
## General
# Enable dark mode
defaults write -globalDomain AppleInterfaceStyle Dark
# Set highlight color to red
#defaults write -globalDomain AppleHighlightColor -string "1.000000 0.733333 0.721569 Red"
## Dock
# Hide dock automatically
defaults write com.apple.dock autohide -bool true
# Don't display recent applications
defaults write com.apple.dock show-recents -bool false
# Minimize windows into application icon
defaults write com.apple.dock minimize-to-application -bool true
# Set the icon size to 42 pixels
defaults write com.apple.dock tilesize -int 42
## Trackpad
# Enable tap to click
defaults write com.apple.AppleMultitouchTrackpad Clicking -bool true
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad Clicking -bool true
# Set sensitivity to medium
defaults write -globalDomain com.apple.trackpad.scaling -float 0.875
# Disable natural scrolling
defaults write -globalDomain com.apple.swipescrolldirection -bool false
# Enable app exposé
defaults write com.apple.dock showAppExposeGestureEnabled -bool true
## Finder
# Show status bar
defaults write com.apple.finder ShowStatusBar -bool true
# Show path bar
defaults write com.apple.finder ShowPathbar -bool true
# Show all filename extensions
defaults write -globalDomain AppleShowAllExtensions -bool true
# Keep folders on top
defaults write com.apple.finder _FXSortFoldersFirst -bool true
# Disable change file extension warning
defaults write com.apple.finder FXEnableExtensionChangeWarning -bool false
# Set default search scope to current folder
defaults write com.apple.finder FXDefaultSearchScope -string "SCcf"
# Set default view style to list
defaults write com.apple.finder FXPreferredViewStyle -string "Nlsv"
## Safari
# Show status bar
defaults write com.apple.Safari ShowOverlayStatusBar -bool true
# Don't show frequently visited sites
defaults write com.apple.Safari ShowFrequentlyVisitedSites -bool false
# Don't open downloaded files automatically
defaults write com.apple.Safari AutoOpenSafeDownloads -bool false
# Show the full URL in the address bar
defaults write com.apple.Safari ShowFullURLInSmartSearchField -bool true
# Disable auto fill
defaults write com.apple.Safari AutoFillPasswords -bool false
defaults write com.apple.Safari AutoFillCreditCardData -bool false
defaults write com.apple.Safari AutoFillMiscellaneousForms -bool false
# Enable the developer menu
defaults write com.apple.Safari IncludeDevelopMenu -bool true
defaults write com.apple.Safari WebKitDeveloperExtrasEnabledPreferenceKey -bool true
defaults write com.apple.Safari WebKitPreferences.developerExtrasEnabled -bool true