Puppet Class: bettertouchtool

Defined in:
manifests/init.pp

Overview

Class: bettertouchtool

Install bettertouchtool

Parameters:

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


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

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