You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
470 B
18 lines
470 B
- name: Set up MailMate
|
|
hosts: all
|
|
tasks:
|
|
|
|
- name: Create KeyBindings dir
|
|
ansible.builtin.file:
|
|
path: ~/Library/Application Support/MailMate/Resources/KeyBindings
|
|
state: directory
|
|
mode: '0755'
|
|
|
|
- name: Symlink key bindings
|
|
ansible.builtin.file:
|
|
src: ~/.dotfiles/macos/MailMate.plist
|
|
dest: ~/Library/Application Support/MailMate/Resources/KeyBindings/Alpha.plist
|
|
state: link
|
|
|
|
# vim: ft=yaml.ansible
|