Puppet Class: osx::dock::autohide
- Defined in:
 - manifests/dock/autohide.pp
 
Overview
Public: Causes the dock to hide itself when you’re not pointing at it.
        2 3 4 5 6 7 8 9 10 11 12  | 
      
        # File 'manifests/dock/autohide.pp', line 2
class osx::dock::autohide {
  include osx::dock
  boxen::osx_defaults { 'Automatically hide the dock':
    user   => $::boxen_user,
    key    => 'autohide',
    domain => 'com.apple.dock',
    value  => true,
    notify => Exec['killall Dock'];
  }
}
       |