Puppet Class: alfred

Defined in:
manifests/init.pp

Overview

Class: alfred

Install and configure Alfred

Parameters:

  • package (Any) (defaults to: 'alfred-halyard')
  • install_path (Any) (defaults to: "/Users/${::boxen_user}/Applications/Alfred 2.app")


5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# File 'manifests/init.pp', line 5

class alfred (
  $package = 'alfred-halyard',
  $install_path = "/Users/${::boxen_user}/Applications/Alfred 2.app",
) {
  package { $package:
    provider => 'brewcask',
    require  => Homebrew::Tap['halyard/casks']
  } ->
  osx_login_item { 'Alfred 2':
    hidden => true,
    path   => $install_path
  } ~>
  exec { 'launch alfred':
    command     => "/usr/bin/open '${install_path}'",
    refreshonly => true,
  }
}