dotfiles/tasks/mac.yml
Jake Howard ab945b0a48
Replace with_items for loop
It's the new way, apparently
2019-12-09 21:09:00 +00:00

30 lines
640 B
YAML

- name: "Install macOS packages"
aur:
skip_installed: true
name: "{{ item }}"
become: true
become_user: aur_builder
when: "item not in installed_packages.stdout_lines"
loop:
- mbpfan-git
- bcwc-pcie-git
- name: Enable mbpfan service
systemd:
name: mbpfan
enabled: true
state: started
- name: Make the FN key work the correct way
lineinfile:
path: /etc/modprobe.d/hid_apple.conf
line: options hid_apple fnmode=2
create: true
- name: Disable power key
lineinfile:
path: /etc/systemd/logind.conf
state: present
regexp: '^HandlePowerKey='
line: 'HandlePowerKey=ignore'