35 lines
754 B
YAML
35 lines
754 B
YAML
- name: "[Arch] install flatpak"
|
|
become: yes
|
|
community.general.pacman:
|
|
name:
|
|
- flatpak
|
|
when: ansible_distribution == "Archlinux"
|
|
|
|
- name: "[Ubuntu] install package managers"
|
|
become: yes
|
|
apt:
|
|
update_cache: yes
|
|
pkg:
|
|
- flatpak
|
|
when: ansible_distribution == "Ubuntu"
|
|
|
|
- name: "[All] install the smile emoji picker"
|
|
community.general.flatpak:
|
|
state: present
|
|
name: it.mijorus.smile
|
|
|
|
- name: "[All] install bottles"
|
|
community.general.flatpak:
|
|
state: present
|
|
name: com.usebottles.bottles
|
|
|
|
- name: "[All] install Element"
|
|
community.general.flatpak:
|
|
state: present
|
|
name: im.riot.Riot
|
|
|
|
- name: "[All] install Parsec"
|
|
community.general.flatpak:
|
|
state: present
|
|
name: com.parsecgaming.parsec
|