-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.sh
41 lines (29 loc) · 949 Bytes
/
config.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
33
34
35
36
37
38
39
40
41
echo "Finder config..."
# Show Posix Path In Title
defaults write com.apple.finder _FXShowPosixPathInTitle -bool YES;
killall Finder
#
defaults write com.apple.finder ShowExternalHardDrivesOnDesktop -bool YES;
killall Finder
#
defaults write com.apple.finder ShowHardDrivesOnDesktop -bool YES;
killall Finder
#
defaults write com.apple.finder ShowMountedServersOnDesktop -bool YES;
killall Finder
#
defaults write com.apple.finder ShowRemovableMediaOnDesktop -bool YES;
killall Finder
#
defaults write com.apple.finder AppleShowAllFiles YES;
killall Finder
# Hidden apps hidden in dock
defaults write com.apple.Dock showhidden -bool TRUE;
killall Dock
# Kill dock animation
defaults write com.apple.dock autohide-time-modifier -int 0;
killall Dock
# Show recently used apps in dock folder
defaults write com.apple.dock persistent-others -array-add '{"tile-data" = {"list-type" = 1;}; "tile-type" = "recents-tile";}';
killall Dock
exit 0