76 lines
1.7 KiB
YAML
Raw Normal View History

---
2021-02-06 15:33:26 -06:00
# Use flatpaks because they're consistent! :)
# Flatpak Pre-reqs
2021-02-02 21:28:17 -06:00
- name: Workstation | Linux | Flatpak | Install Flatpak
2020-12-21 05:23:56 -06:00
package:
name: flatpak
update_cache: yes
2021-02-02 21:28:17 -06:00
- name: Workstation | Linux | Flatpak | Add Flathub for System
2020-12-21 05:23:56 -06:00
flatpak_remote:
name: flathub
state: present
method: system
flatpakrepo_url: https://dl.flathub.org/repo/flathub.flatpakrepo
2021-02-06 15:33:26 -06:00
# Flatpak Installs
2021-02-02 21:28:17 -06:00
- name: Workstation | Linux | Flatpak | Install Discord
2020-12-21 05:23:56 -06:00
flatpak:
name: com.discordapp.Discord
2021-02-06 15:33:26 -06:00
remote: flathub
state: present
2020-12-21 05:23:56 -06:00
2021-02-02 21:28:17 -06:00
- name: Workstation | Linux | Flatpak | Install Shotcut
2020-12-21 05:23:56 -06:00
flatpak:
name: org.shotcut.Shotcut
2021-02-06 15:33:26 -06:00
remote: flathub
state: present
2020-12-28 18:37:37 -06:00
2021-02-06 15:33:26 -06:00
- name: Workstation | Linux | Flatpak | Remove Firefox (It's Broke Boys!)
2020-12-28 18:37:37 -06:00
flatpak:
name: org.mozilla.firefox
2021-02-06 15:33:26 -06:00
remote: flathub
state: absent
2020-12-28 18:37:37 -06:00
2021-02-02 21:28:17 -06:00
- name: Workstation | Linux | Flatpak | Install Thunderbird
2020-12-28 18:37:37 -06:00
flatpak:
name: org.mozilla.Thunderbird
2021-02-06 15:33:26 -06:00
remote: flathub
state: present
- name: Workstation | Linux | Flatpak | Install LBRY
flatpak:
name: io.lbry.lbry-app
remote: flathub
state: present
- name: Workstation | Linux | Flatpak | Install Steam
flatpak:
name: com.valvesoftware.Steam
remote: flathub
state: present
2020-12-28 18:37:37 -06:00
# Repo Software
2021-02-06 15:33:26 -06:00
- name: Workstation | Linux | Flatpak | Install Firefox ESR from Package Manager
package:
name:
- "{{ firefox_esr }}"
2021-02-06 15:33:26 -06:00
state: present
2021-02-06 15:33:26 -06:00
- name: Workstation | Linux | Flatpak | Remove Firefox Normal for ESR
package:
name:
- "{{ firefox }}"
state: absent
2021-02-06 15:38:16 -06:00
when: firefox != firefix_esr
- name: Workstation | Linux | Flatpak | Remove Software From Package Manager
package:
name:
- "{{ thunderbird }}"
2021-01-31 12:58:37 -06:00
- "{{ evolution }}"
2021-02-06 15:33:26 -06:00
- steam
state: absent