diff --git a/tasks/workstation/linux/software/lxqt.yml b/tasks/workstation/linux/software/lxqt.yml new file mode 100644 index 0000000..c597772 --- /dev/null +++ b/tasks/workstation/linux/software/lxqt.yml @@ -0,0 +1,20 @@ +--- +# 20260716 - Hyperling +# Giving this DE a shot but not liking it as much as others. + +- name: Workstation | Linux | Software | LXQt | Facts | Defaults + set_fact: + lxqt_package: lxqt + +- name: Workstation | Linux | Software | LXQt | Facts | Debian Derivitives + set_fact: + lxqt_package: task-lxqt-desktop + when: ansible_distribution in ("Debian", "Devuan") + +- name: Workstation | Linux | Software | LXQt | Install + package: + name: + - "{{ lxqt_package }}" + - "{{ sddm }}" + state: present + update_cache: yes