Puppet Class: osx::global::disable_key_press_and_hold

Defined in:
manifests/global/disable_key_press_and_hold.pp

Overview

Public: Disables keyboard press-and-hold for accented character entry.



2
3
4
5
6
7
8
9
10
# File 'manifests/global/disable_key_press_and_hold.pp', line 2

class osx::global::disable_key_press_and_hold {
  boxen::osx_defaults { 'Disable press-and-hold for accented characters':
    ensure => present,
    domain => 'NSGlobalDomain',
    key    => 'ApplePressAndHoldEnabled',
    value  => false,
    user   => $::boxen_user;
  }
}