ansible-desktop/roles/desktop/tasks/browsers.yml

18 lines
345 B
YAML

- name: "[Arch] install chromium"
become: yes
community.general.pacman:
name:
- chromium
- name: "[Arch] install firefox"
become: yes
community.general.pacman:
name:
- firefox
- name: "[Arch] install floorp"
shell:
cmd:
yay -S --needed --noconfirm floorp-bin
when: ansible_distribution == "Archlinux"