Puppet Class: textexpander

Defined in:
manifests/init.pp

Overview

Class: textexpander

Install textexpander

Parameters:

  • install_path (Any) (defaults to: "/Users/${::boxen_user}/Applications/TextExpander.app")


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

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