Puppet Class: osxui
- Defined in:
- manifests/init.pp
Overview
Class: osxui
Full description of class osxui here.
Parameters
- sample_parameter
-
Explanation of what this parameter affects and what it defaults to.
10 11 12 13 14 15 16 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 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 |
# File 'manifests/init.pp', line 10
class osxui (
) {
include osx::dock::disable
include osx::dock::autohide
include osx::dock::disable_dashboard
include osx::keyboard::capslock_to_control
include osx::keyboard::dim_backlight
include osx::mouse::trackpad_speed
include osx::global::disable_key_press_and_hold
include osx::global::enable_keyboard_control_access
include osx::global::disable_autocorrect
include osx::global::key_repeat_delay
include osx::global::key_repeat_rate
include osx::global::disable_smart_quotes
include osx::global::expand_print_dialog
include osx::global::expand_save_dialog
include osx::global::scroll_behavior
include osx::global::ui_mode
include osx::global::time_machine_prompts
include osx::global::clock_format
include osx::global::tap_to_click
include osx::sound::interface_sound_effects
include osx::sound::volume_change_feedback
include osx::sound::battery_chime
include osx::finder::unhide_library
include osx::finder::show_all_filename_extensions
include osx::finder::no_file_extension_warnings
include osx::finder::empty_trash_securely
include osx::finder::sidebar_icon_size
include osx::finder::view_style
include osx::finder::default_path
include osx::disable_app_quarantine
include osx::no_network_dsstores
package { 'hyperspace-halyard':
provider => 'brewcask',
require => Homebrew::Tap['halyard/casks']
} ->
class { 'osx::screensaver::set':
screensaver => 'Hyperspace',
path => join([
"/Users/${::boxen_user}/Library/Screen Savers/",
'Hyperspace.saver'])
}
include osx::screensaver::start_delay
class { 'osx::dock::hot_corners':
top_right => 'Start Screen Saver'
}
}
|