main
Alpha Chen 8 months ago
parent c159169cf9
commit 3d424223c9
Signed by: alpha
SSH Key Fingerprint: SHA256:3fOT8fiYQG/aK9ntivV3Bqtg8AYQ7q4nV6ZgihOA20g

@ -0,0 +1,17 @@
- 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: "{{ playbook_dir ~ '/mailmate/Alpha.plist'}}"
dest: ~/Library/Application Support/MailMate/Resources/KeyBindings/Alpha.plist
state: link
# vim: ft=yaml.ansible

@ -0,0 +1,23 @@
{
// navigation
"j" = "nextMessage:";
"k" = "previousMessage:";
"/" = "searchAllMessages:";
"g" = {
"i" = ( "goToMailbox:", "935735E7-D46D-4B1E-AF63-4905ABB907BC" );
"l" = ( "goToMailbox:", "94564F7D-DF9A-4759-A634-87752884B612" );
"j" = ( "goToMailbox:", "Junk" );
"l" = "goToMailbox:";
};
// actions
"!" = "moveToJunk:";
"c" = "newMessage:";
"d" = "deleteMessage:";
"D" = "downloadResources:";
"e" = "archive:";
"f" = "forwardMessage:";
"r" = "reply:";
"a" = "replyAll:";
}
Loading…
Cancel
Save