More changes for Pinephone.

This commit is contained in:
Hyperling 2021-05-22 17:25:08 -05:00
parent 84f9d8ede3
commit 6730ad5311

View File

@ -48,29 +48,10 @@
# Software not yet available or working properly in Flatpak form.
- name: Workstation | Linux | Flatpak Distro | Package Manager | Install Firefox ESR
package:
name: "{{ firefox_esr }}"
state: present
- name: Workstation | Linux | Flatpak Distro | Package Manager | Remove Firefox Normal
package:
name:
- "{{ firefox }}"
state: absent
when: firefox != firefox_esr
- name: Workstation | Linux | Flatpak Distro | Package Manager | Add Lutris PPA (Ubuntu)
apt_repository:
repo: ppa:lutris-team/lutris
update_cache: yes
state: present
when: ansible_distribution == "Ubuntu"
- name: Workstation | Linux | Flatpak Distro | Package Manager | Add Applications
- name: Workstation | Linux | Flatpak Distro | Package Manager | Install From Repo
package:
name:
- lutris
- "{{ firefox_esr }}"
- vlc
- "{{ appimagelauncher }}"
state: present
@ -83,4 +64,25 @@
- steam
- vscode
- code
state: absent
state: absent
- name: Workstation | Linux | Flatpak Distro | Package Manager | Add Lutris PPA (Ubuntu)
apt_repository:
repo: ppa:lutris-team/lutris
update_cache: yes
state: present
when: ansible_distribution == "Ubuntu"
- name: Workstation | Linux | Flatpak Distro | Package Manager | Add Lutris (besides ARM)
package:
name:
- lutris
state: present
when: ansible_architacture != "aarch64"
- name: Workstation | Linux | Flatpak Distro | Package Manager | Remove Firefox Normal
package:
name:
- "{{ firefox }}"
state: absent
when: firefox != firefox_esr