Puppet Class: osx::dock::hide_indicator_lights
- Defined in:
- manifests/dock/hide_indicator_lights.pp
Overview
Public: Removes the dots that indicate a running application.
2 3 4 5 6 7 8 9 10 11 12 |
# File 'manifests/dock/hide_indicator_lights.pp', line 2
class osx::dock::hide_indicator_lights {
include osx::dock
boxen::osx_defaults { 'Hide indicator lights under running applications':
user => $::boxen_user,
domain => 'com.apple.dock',
key => 'show-process-indicators',
value => false,
notify => Exec['killall Dock'];
}
}
|