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. # Software not yet available or working properly in Flatpak form.
- name: Workstation | Linux | Flatpak Distro | Package Manager | Install Firefox ESR - name: Workstation | Linux | Flatpak Distro | Package Manager | Install From Repo
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
package: package:
name: name:
- lutris - "{{ firefox_esr }}"
- vlc - vlc
- "{{ appimagelauncher }}" - "{{ appimagelauncher }}"
state: present state: present
@ -83,4 +64,25 @@
- steam - steam
- vscode - vscode
- code - 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