Install chromium & floorp

This commit is contained in:
Przemek Grondek 2024-08-15 16:46:11 +02:00
parent e29a73e0c2
commit ee210934cd
2 changed files with 17 additions and 1 deletions

View File

@ -35,7 +35,6 @@
community.general.pacman: community.general.pacman:
name: name:
- file-roller - file-roller
- firefox
- flameshot - flameshot
- gnome-backgrounds - gnome-backgrounds
- gnome-text-editor - gnome-text-editor

View File

@ -0,0 +1,17 @@
- 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"