More organization and beginning to add 1337 share.

This commit is contained in:
2021-02-01 05:03:27 -06:00
parent 834800df8c
commit af1eee5f03
12 changed files with 34 additions and 9 deletions

View File

@ -0,0 +1,40 @@
---
# Pre-reqs
- name: Install Flatpak
package:
name: flatpak
update_cache: yes
- name: Add Flathub for System
flatpak_remote:
name: flathub
state: present
method: system
flatpakrepo_url: https://dl.flathub.org/repo/flathub.flatpakrepo
# Hop into installs
- name: Install Discord
flatpak:
name: com.discordapp.Discord
- name: Install Shotcut
flatpak:
name: org.shotcut.Shotcut
- name: Install Firefox
flatpak:
name: org.mozilla.firefox
- name: Install Thunderbird
flatpak:
name: org.mozilla.Thunderbird
# Remove any applicable repo software
- name: Remove packages that may come with an OS but were just installed as Flatpak
package:
name:
- "{{ firefox }}"
- "{{ thunderbird }}"
- "{{ evolution }}"
state: absent