Puppet Class: osx::universal_access::cursor_size
- Defined in:
- manifests/universal_access/cursor_size.pp
Overview
Public: Sets the size of the cursor.
zoom - the factor by which the cursor will be zoomed. Defaults to 1.5.
Examples
# set the cursor zoom to 1.5 (the default)...
include osx::universal_access::cursor_size
# ...or pick your own multiplier!
class { 'osx::universal_access::cursor_size':
zoom => 2
}
14 15 16 17 18 19 20 21 |
# File 'manifests/universal_access/cursor_size.pp', line 14
class osx::universal_access::cursor_size($zoom = 1.5) {
boxen::osx_defaults { 'cursor size':
user => $::boxen_user,
domain => 'com.apple.universalaccess',
key => 'mouseDriverCursorSize',
value => $zoom;
}
}
|