dotfiles/tasks/media.yml
Jake Howard 395504ecd4
Install compat utils so everything works nicely
No idea why I need to be using the old compat versions, but hey
2019-11-25 08:48:52 +00:00

38 lines
827 B
YAML

- name: "Install Spotify"
aur:
skip_installed: true
name: "{{ item }}"
become: true
become_user: aur_builder
when: "item not in installed_packages.stdout_lines"
with_items:
- 'ffmpeg-compat-57'
- 'spotify'
- name: "Install media-related packages"
aur:
skip_installed: true
name: "{{ item }}"
become: true
become_user: aur_builder
when: "item not in installed_packages.stdout_lines"
with_items:
- 'bcm20702a1-firmware'
- 'bluez-firmware'
- 'bluez-utils-compat'
- 'blueberry'
- 'handbrake'
- name: "Install pulseaudio"
aur:
skip_installed: true
name: "{{ item }}"
become: true
become_user: aur_builder
when: "item not in installed_packages.stdout_lines"
with_items:
- alsa-utils
- pavucontrol
- pulseaudio
- pulseaudio-bluetooth