Install spotify via paru on arch

This commit is contained in:
2021-10-03 15:44:59 +02:00
parent 10c96b1862
commit 92cc4c31d6

View File

@@ -452,6 +452,7 @@
when: distro == 'ubuntu'
tags: [yubikey-touch-detector]
- block:
- block:
- name: add spotify apt key
apt_key:
@@ -471,6 +472,18 @@
update_cache: true
become: true
when: distro == 'ubuntu'
- block:
- name: install spotify from AUR via paru
shell: |
curl -sS https://download.spotify.com/debian/pubkey_0D811D58.gpg | gpg --import
yes 1 | paru --skipreview --aur --batchinstall --noconfirm -S spotify
become: true
become_user: paru
args:
creates: /usr/bin/spotify
when: distro == 'archlinux'
tags: [spotify]
- block: