Ensure Manjaro can open AppImage files.

This commit is contained in:
Hyperling 2021-02-28 08:25:10 -06:00
parent fd61b3aa95
commit d194f6df94
2 changed files with 14 additions and 14 deletions

View File

@ -9,6 +9,7 @@
evolution: evolution evolution: evolution
gnome_tweaks: gnome-tweaks gnome_tweaks: gnome-tweaks
dconf_editor: dconf-editor dconf_editor: dconf-editor
appimagelauncher: htop #placeholder
- name: Workstation | Facts | Package | Pop_OS! - name: Workstation | Facts | Package | Pop_OS!
@ -40,6 +41,7 @@
flatpak_distro: true flatpak_distro: true
firefox_esr: firefox firefox_esr: firefox
psutil: python-psutil psutil: python-psutil
appimagelauncher: appimagelauncher
when: ansible_distribution == "Archlinux" when: ansible_distribution == "Archlinux"

View File

@ -45,18 +45,6 @@
# 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 | 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 | Install Lutris
package:
name: lutris
state: present
- name: Workstation | Linux | Flatpak Distro | Package Manager | Install Firefox ESR - name: Workstation | Linux | Flatpak Distro | Package Manager | Install Firefox ESR
package: package:
name: "{{ firefox_esr }}" name: "{{ firefox_esr }}"
@ -69,9 +57,19 @@
state: absent state: absent
when: firefox != firefox_esr when: firefox != firefox_esr
- name: Workstation | Linux | Flatpak Distro | Package Manager | Install VLC - 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: vlc name:
- lutris
- vlc
- "{{ appimagelauncher }}"
state: present state: present
- name: Workstation | Linux | Flatpak Distro | Package Manager | Remove Applciations - name: Workstation | Linux | Flatpak Distro | Package Manager | Remove Applciations