dotfiles/tasks/media.yml

38 lines
795 B
YAML
Raw Normal View History

- name: Install Spotify
2019-03-14 21:34:29 +00:00
aur:
skip_installed: true
name: "{{ item }}"
become: true
become_user: aur_builder
when: item not in installed_packages.stdout_lines
loop:
2019-03-14 21:34:29 +00:00
- 'ffmpeg-compat-57'
- 'spotify'
- name: Install media-related packages
2019-03-14 21:34:29 +00:00
aur:
skip_installed: true
name: "{{ item }}"
become: true
become_user: aur_builder
when: item not in installed_packages.stdout_lines
loop:
2019-03-14 21:34:29 +00:00
- 'bcm20702a1-firmware'
- 'bluez-firmware'
- 'bluez-utils-compat'
- 'blueman'
2019-03-14 21:34:29 +00:00
- 'handbrake'
- name: Install pulseaudio
aur:
skip_installed: true
name: "{{ item }}"
become: true
become_user: aur_builder
when: item not in installed_packages.stdout_lines
loop:
- alsa-utils
- pavucontrol
- pulseaudio
- pulseaudio-bluetooth