Puppet Class: osx::global::disable_autocorrect

Defined in:
manifests/global/disable_autocorrect.pp

Overview

Public: Disables spelling autocorrect.



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

class osx::global::disable_autocorrect {
  boxen::osx_defaults { 'Disable autocorrect':
    ensure => present,
    domain => 'NSGlobalDomain',
    key    => 'NSAutomaticSpellingCorrectionEnabled',
    value  => false,
    user   => $::boxen_user;
  }
}