Puppet Class: osx::dock::hot_corners
- Defined in:
- manifests/dock/hot_corners.pp
Overview
Public: Define actions for hot corners
Parameters
The available actions are: ['Mission Control'|'Application Windows'|
'Desktop'|'Start Screen Saver'|'Disable Screen Saver'|'Dashboard'|
'Put Display to Sleep'|'Launchpad'|'Notification Center']
top_left: Action for the top left corner
top_right: Action for the top right corner
bottom_left: Action for the bottom left corner
bottom_right: Action for the bottom right corner
Examples
class { 'osx::dock::hot_corners':
top_left => 'Desktop'
top_right => 'Application Windows'
bottom_right => 'Dashboard'
}
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
# File 'manifests/dock/hot_corners.pp', line 22
class osx::dock::hot_corners (
$top_left = undef,
$top_right = undef,
$bottom_left = undef,
$bottom_right = undef
) {
if ($top_left) {
osx::dock::hot_corner { 'Top Left':
action => $top_left
}
}
if ($top_right) {
osx::dock::hot_corner { 'Top Right':
action => $top_right
}
}
if ($bottom_left) {
osx::dock::hot_corner { 'Bottom Left':
action => $bottom_left
}
}
if ($bottom_right) {
osx::dock::hot_corner { 'Bottom Right':
action => $bottom_right
}
}
}
|