ansible-desktop/roles/desktop/tasks/flatpaks.yml
2024-08-08 01:09:26 +02:00

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