mac-dev-playbook/tasks/terminal.yml

29 lines
977 B
YAML
Raw Normal View History

---
2015-01-04 04:17:46 +00:00
# Custom Terminal theme.
- name: Get current Terminal profile.
command: defaults read com.apple.terminal 'Default Window Settings'
2015-01-04 04:17:46 +00:00
register: terminal_theme
changed_when: false
check_mode: false
2015-01-04 04:17:46 +00:00
- name: Ensure custom Terminal profile is added.
2021-05-27 18:39:20 +00:00
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
2015-01-04 04:17:46 +00:00
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 }}"
2015-01-04 04:17:46 +00:00
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"