Puppet Class: osx::global::tap_to_click
- Defined in:
 - manifests/global/tap_to_click.pp
 
Overview
Public: Enables Tap to click
        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  | 
      
        # File 'manifests/global/tap_to_click.pp', line 2
class osx::global::tap_to_click {
  boxen::osx_defaults { 'Tap-To-Click Bluetooth':
    ensure => present,
    domain => 'com.apple.driver.AppleBluetoothMultitouch.trackpad',
    key    => 'Clicking',
    value  => true,
    type   => bool,
    user   => $::boxen_user;
  }
  boxen::osx_defaults { 'Tap-To-Click Mouse':
    ensure => present,
    domain => 'NSGlobalDomain',
    key    => 'com.apple.mouse.tapBehavior',
    value  => 1,
    type   => int,
    user   => $::boxen_user;
  }
  boxen::osx_defaults { 'Tap-To-Click Current Host':
    ensure => present,
    domain => 'NSGlobalDomain',
    key    => 'com.apple.mouse.tapBehavior',
    value  => 1,
    type   => int,
    host   => 'currentHost',
    user   => $::boxen_user;
  }
  boxen::osx_defaults { 'Tap-to-Click new trackpad':
    domain => 'com.apple.AppleMultitouchTrackpad',
    key    => 'Clicking',
    value  => 1,
    type   => int,
    user   => $::boxen_user
  }
}
       |