[ansible] Fix up OS X defaults

pull/28/head
Alpha Chen 9 years ago
parent 2e9f32b3f5
commit f284fe61e1

@ -9,7 +9,7 @@
- include: dock.yml - include: dock.yml
- name: set OS X defaults - name: set OS X defaults
osx_defaults: my_defaults:
domain: "{{ item.domain | default(omit) }}" domain: "{{ item.domain | default(omit) }}"
key: "{{ item.key }}" key: "{{ item.key }}"
type: "{{ item.type }}" type: "{{ item.type }}"

@ -27,7 +27,7 @@ osx_defaults:
- # delay before keyboard repeat - # delay before keyboard repeat
key: InitialKeyRepeat key: InitialKeyRepeat
type: int type: int
value: 15 value: 25
- # set sidebar item size to small - # set sidebar item size to small
key: NSTableViewDefaultSizeMode key: NSTableViewDefaultSizeMode
type: int type: int
@ -106,16 +106,24 @@ osx_defaults:
# Trackpad settings # Trackpad settings
- domain: com.apple.driver.AppleBluetoothMultitouch.trackpad - domain: com.apple.driver.AppleBluetoothMultitouch.trackpad
key: Clicking key: Clicking
type: bool type: int
value: true value: 1
- domain: com.apple.driver.AppleBluetoothMultitouch.trackpad - domain: com.apple.driver.AppleBluetoothMultitouch.trackpad
key: DragLock key: TrackpadFourFingerVertSwipeGesture
type: bool type: int
value: true value: 0
- domain: com.apple.driver.AppleBluetoothMultitouch.trackpad - domain: com.apple.driver.AppleBluetoothMultitouch.trackpad
key: Dragging key: TrackpadThreeFingerDrag
type: bool type: int
value: true value: 1
- domain: com.apple.driver.AppleBluetoothMultitouch.trackpad
key: TrackpadThreeFingerHorizSwipeGesture
type: int
value: 0
- domain: com.apple.driver.AppleBluetoothMultitouch.trackpad
key: TrackpadThreeFingerVertSwipeGesture
type: int
value: 0
# Finder defaults # Finder defaults
- # don't ask when changing file extension - # don't ask when changing file extension
@ -139,6 +147,12 @@ osx_defaults:
type: bool type: bool
value: true value: true
- # set date format in menubar
domain: com.apple.menuextra.clock
key: DateFormat
type: string
value: h:mm
- # no window shadows when capturing windows - # no window shadows when capturing windows
domain: com.apple.screencapture domain: com.apple.screencapture
key: disable-shadow key: disable-shadow

Loading…
Cancel
Save