Blame view

modules/people/manifests/hanjianwei/osx.pp 1.31 KB
3a47d364c   Jianwei Han   Remove caches for...
1
2
3
4
5
6
7
8
9
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
  class people::hanjianwei::osx inherits people::hanjianwei::config {
    # Zsh
    osx_chsh { $boxen_user:
      shell => '/bin/zsh'
    }
  
    repository { "${home}/.zprezto":
      source => 'sorin-ionescu/prezto'
    }
    ->
    file { "${home}/.zshrc":
      ensure  => link,
      target  => "${dotfiles}/Zsh/zshrc",
      require => Repository["${dotfiles}"]
    }
    ->
    file { "${home}/.zshenv":
      ensure  => link,
      target  => "${dotfiles}/Zsh/zshenv",
      require => Repository["${dotfiles}"]
    }
    ->
    file { "${home}/.zpreztorc":
      ensure  => link,
      target  => "${dotfiles}/Zsh/zpreztorc",
      require => Repository["${dotfiles}"]
    }
    ->
    file { "${home}/.zlogin":
      ensure  => link,
      target  => "${dotfiles}/Zsh/zlogin",
      require => Repository["${dotfiles}"]
    }
    ->
    file { "${home}/.zlogout":
      ensure  => link,
      target  => "${dotfiles}/Zsh/zlogout",
      require => Repository["${dotfiles}"]
    }
    file { "${home}/.activate.sh":
      ensure  => link,
      target  => "${dotfiles}/Zsh/activate.sh",
      require => Repository["${dotfiles}"]
    }
  
    # Setup mirrors
    include people::hanjianwei::mirrors
  
    # OSX settings
    include 'osx::global::expand_save_dialog'
    include 'osx::global::tap_to_click'
    include 'osx::disable_app_quarantine'
    include 'osx::finder::show_all_on_desktop'
    include 'osx::finder::unhide_library'
  }