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
21
22
23
24
25
26
# 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_default { 'Enable launch on boot for BetterTouchTool':
    domain => 'com.hegenberg.BetterTouchTool',
    key    => 'launchOnStartup',
    value  => 1,
    type   => 'integer'
  } ->
  osx_login_item { 'BetterTouchTool':
    hidden => true,
    path   => $install_path
  } ~>
  exec { 'launch bettertouchtool':
    command     => "/usr/bin/open ${install_path}",
    refreshonly => true,
  }
}