|
1 | 1 | ---
|
2 | 2 | - name: Show Drives on the Desktop
|
3 |
| - osx_defaults: |
| 3 | + community.general.osx_defaults: |
4 | 4 | domain: com.apple.finder
|
5 | 5 | key: ShowHardDrivesOnDesktop
|
6 | 6 | type: bool
|
|
10 | 10 | - Restart Finder
|
11 | 11 |
|
12 | 12 | - name: Show External Drives on the Desktop
|
13 |
| - osx_defaults: |
| 13 | + community.general.osx_defaults: |
14 | 14 | domain: com.apple.finder
|
15 | 15 | key: ShowExternalHardDrivesOnDesktop
|
16 | 16 | type: bool
|
|
20 | 20 | - Restart Finder
|
21 | 21 |
|
22 | 22 | - name: Show Removable Media on the Desktop
|
23 |
| - osx_defaults: |
| 23 | + community.general.osx_defaults: |
24 | 24 | domain: com.apple.finder
|
25 | 25 | key: ShowRemovableMediaOnDesktop
|
26 | 26 | type: bool
|
|
30 | 30 | - Restart Finder
|
31 | 31 |
|
32 | 32 | - name: Show Hidden Files
|
33 |
| - osx_defaults: |
| 33 | + community.general.osx_defaults: |
34 | 34 | domain: com.apple.finder
|
35 | 35 | key: AppleShowAllFiles
|
36 | 36 | type: bool
|
|
40 | 40 | - Restart Finder
|
41 | 41 |
|
42 | 42 | - name: Show File Extensions
|
43 |
| - osx_defaults: |
| 43 | + community.general.osx_defaults: |
44 | 44 | domain: NSGlobalDomain
|
45 | 45 | key: AppleShowAllExtensions
|
46 | 46 | type: bool
|
|
50 | 50 | - Restart Finder
|
51 | 51 |
|
52 | 52 | - name: Show the Status Bar in Finder
|
53 |
| - osx_defaults: |
| 53 | + community.general.osx_defaults: |
54 | 54 | domain: com.apple.finder
|
55 | 55 | key: ShowStatusBar
|
56 | 56 | type: bool
|
|
60 | 60 | - Restart Finder
|
61 | 61 |
|
62 | 62 | - name: Show the Path Bar in Finder
|
63 |
| - osx_defaults: |
| 63 | + community.general.osx_defaults: |
64 | 64 | domain: com.apple.finder
|
65 | 65 | key: ShowPathbar
|
66 | 66 | type: bool
|
|
71 | 71 |
|
72 | 72 | - name: Disable automatic capitalization as it’s annoying when typing code
|
73 | 73 | become: true
|
74 |
| - osx_defaults: |
| 74 | + community.general.osx_defaults: |
75 | 75 | domain: NSGlobalDomain
|
76 | 76 | key: NSAutomaticCapitalizationEnabled
|
77 | 77 | type: bool
|
|
80 | 80 |
|
81 | 81 | - name: Disable smart dashes as they’re annoying when typing code
|
82 | 82 | become: true
|
83 |
| - osx_defaults: |
| 83 | + community.general.osx_defaults: |
84 | 84 | domain: NSGlobalDomain
|
85 | 85 | key: NSAutomaticDashSubstitutionEnabled
|
86 | 86 | type: bool
|
|
89 | 89 |
|
90 | 90 | - name: Disable automatic period substitution as it’s annoying when typing code
|
91 | 91 | become: true
|
92 |
| - osx_defaults: |
| 92 | + community.general.osx_defaults: |
93 | 93 | domain: NSGlobalDomain
|
94 | 94 | key: NSAutomaticPeriodSubstitutionEnabled
|
95 | 95 | type: bool
|
|
98 | 98 |
|
99 | 99 | - name: Disable smart quotes as they’re annoying when typing code
|
100 | 100 | become: true
|
101 |
| - osx_defaults: |
| 101 | + community.general.osx_defaults: |
102 | 102 | domain: NSGlobalDomain
|
103 | 103 | key: NSAutomaticQuoteSubstitutionEnabled
|
104 | 104 | type: bool
|
|
107 | 107 |
|
108 | 108 | - name: Disable auto-correct
|
109 | 109 | become: true
|
110 |
| - osx_defaults: |
| 110 | + community.general.osx_defaults: |
111 | 111 | domain: NSGlobalDomain
|
112 | 112 | key: NSAutomaticSpellingCorrectionEnabled
|
113 | 113 | type: bool
|
|
117 | 117 | # This stops the graphical python window from popping up a message all the time if it crashed
|
118 | 118 | - name: Disable close windows when quitting an app
|
119 | 119 | become: true
|
120 |
| - osx_defaults: |
| 120 | + community.general.osx_defaults: |
121 | 121 | domain: NSGlobalDomain
|
122 | 122 | key: NSQuitAlwaysKeepsWindows
|
123 | 123 | type: bool
|
|
0 commit comments