Skip to content

Commit

Permalink
Fixes #11: Use mas for Mac App Store automation.
Browse files Browse the repository at this point in the history
  • Loading branch information
geerlingguy committed Dec 5, 2016
1 parent 602ed0c commit 1aad10d
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 23 deletions.
42 changes: 19 additions & 23 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,20 @@ This is a work in progress, and is mostly a means for me to document my current

Not everyone's development environment and preferred software configuration is the same.

You can override any of the defaults configured in `default.config.yml` by creating a `config.yml` file and setting the overrides in that file (e.g. create a customized list of `homebrew_installed_packages`).
You can override any of the defaults configured in `default.config.yml` by creating a `config.yml` file and setting the overrides in that file. For example, you can customize the installed packages and apps with something like:

homebrew_installed_packages:
- cowsay
- git
- go

mas_installed_app_ids:
- 443987910 # 1Password
- 498486288 # Quick Resizer
- 557168941 # Tweetbot
- 497799835 # Xcode

Any variable can be overridden in `config.yml`; see the supporting roles' documentation for a complete list of available variables.

## Included Applications / Configuration (Default)

Expand Down Expand Up @@ -101,12 +114,11 @@ It's my hope that I can get the rest of these things wrapped up into Ansible pla

1. Set JJG-Term as the default Terminal theme (it's installed, but not set as default automatically).
2. Install [Sublime Package Manager](http://sublime.wbond.net/installation).
3. Install all the Mac App Store Apps (see below).
4. Install all the apps that aren't yet in this setup (see below).
5. Remap Caps Lock to Escape (requires macOS Sierra 10.12.1+).
6. Set trackpad tracking rate.
7. Set mouse tracking rate.
8. Configure extra Mail and/or Calendar accounts (e.g. Google, Exchange, etc.).
3. Install all the apps that aren't yet in this setup (see below).
4. Remap Caps Lock to Escape (requires macOS Sierra 10.12.1+).
5. Set trackpad tracking rate.
6. Set mouse tracking rate.
7. Configure extra Mail and/or Calendar accounts (e.g. Google, Exchange, etc.).

### Applications/packages to be added:

Expand All @@ -127,22 +139,6 @@ These are mostly direct download links, some are more difficult to install becau
git clone git://github.com/scrooloose/nerdtree.git
```
### Apps only available via the App Store
I also use the following apps at least once or twice per week, but the Mac App Store is harder to control via CLI, so for now I have to manually install all of these apps from within the App Store application (see [Issue #11](https://github.com/geerlingguy/mac-dev-playbook/issues/11)).
- Tweetbot
- RadarScope
- Pixelmator
- Quick Resizer
- 1Password
- DaisyDisk
- Byword
- Aperture
- Pages
- Keynote
- Numbers
## Testing the Playbook
Many people have asked me if I often wipe my entire workstation and start from scratch just to test changes to the playbook. Nope! Instead, I posted instructions for how I build a [Mac OS X VirtualBox VM](https://github.com/geerlingguy/mac-osx-virtualbox-vm), on which I can continually run and re-run this playbook to test changes and make sure things work correctly.
Expand Down
5 changes: 5 additions & 0 deletions default.config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,3 +80,8 @@ homebrew_cask_apps:
- vagrant
- virtualbox
- vlc

# See `geerlingguy.mas` role documentation for usage instructions.
mas_installed_app_ids: []
mas_email: ""
mas_password: ""
2 changes: 2 additions & 0 deletions main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
roles:
- geerlingguy.homebrew
- geerlingguy.dotfiles
- name: geerlingguy.mas
when: mas_installed_app_ids

tasks:
- include: tasks/ansible-setup.yml
Expand Down
1 change: 1 addition & 0 deletions requirements.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
- name: geerlingguy.dotfiles
- name: geerlingguy.homebrew
- name: geerlingguy.mas

0 comments on commit 1aad10d

Please sign in to comment.