mirror of
https://github.com/geerlingguy/mac-dev-playbook
synced 2024-11-22 03:43:06 +00:00
28 lines
977 B
YAML
28 lines
977 B
YAML
---
|
|
# Custom Terminal theme.
|
|
- name: Get current Terminal profile.
|
|
command: defaults read com.apple.terminal 'Default Window Settings'
|
|
register: terminal_theme
|
|
changed_when: false
|
|
check_mode: false
|
|
|
|
- name: Ensure custom Terminal profile is added.
|
|
copy:
|
|
src: files/terminal/JJG-Term.terminal
|
|
dest: /tmp/JJG-Term.terminal
|
|
changed_when: false
|
|
when: "'JJG-Term' not in terminal_theme.stdout"
|
|
|
|
- name: Ensure custom Terminal profile is added.
|
|
command: open /tmp/JJG-Term.terminal
|
|
changed_when: false
|
|
when: "'JJG-Term' not in terminal_theme.stdout"
|
|
|
|
# TODO: This doesn't work in Yosemite. Consider a different solution?
|
|
- name: Ensure custom Terminal profile is set as default.
|
|
command: "{{ item }}"
|
|
with_items:
|
|
- defaults write com.apple.terminal 'Default Window Settings' -string JJG-Term
|
|
- defaults write com.apple.terminal 'Startup Window Settings' -string JJG-Term
|
|
changed_when: false
|
|
when: "'JJG-Term' not in terminal_theme.stdout"
|