Puppet Class: osx::dock::magnification

Defined in:
manifests/dock/magnification.pp

Overview

Parameters:

  • magnification (Any) (defaults to: true)
  • magnification_size (Any) (defaults to: '128')


17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# File 'manifests/dock/magnification.pp', line 17

class osx::dock::magnification (
  $magnification = true,
  $magnification_size = '128'
){
  include osx::dock

  boxen::osx_defaults { 'magnification':
    domain => 'com.apple.dock',
    key    => 'magnification',
    type   => 'bool',
    value  => $magnification,
    user   => $::boxen_user,
    notify => Exec['killall Dock'];
  }

  boxen::osx_defaults { 'magnification_size':
    domain => 'com.apple.dock',
    key    => 'largesize',
    type   => int,
    value  => $magnification_size,
    user   => $::boxen_user,
    notify => Exec['killall Dock'];
  }

}