completed libreoffice and heroic games launcher

This commit is contained in:
Matthew Stobbs
2025-02-07 14:47:07 -07:00
parent 762688a98c
commit 10a04681da
4 changed files with 46 additions and 9 deletions

View File

@@ -1,5 +1,15 @@
# TODO: implement
---
- name: append to syspkgs
debug:
msg: "NOT IMPLEMENTED YET"
- block:
- ansible.builtin.include_tasks:
file: pkgs/flatpak.yml
when: pkgconfig_flatpkak is undefined
- name: append to flatpkgs
ansible.builtin.set_fact:
flatpkgs: "{{ flatpkgs + [ 'com.heroicgameslauncher.hgl' ] }}"
when:
- ansible_os_family != 'Darwin'
- name: append to caskpkgs
ansible.builtin.set_fact:
caskpkgs: "{{ caskpkgs + [ 'heroic' ] }}"
when: ansible_os_family == 'Darwin'