From c43e5892357d6d297e072f52a6ed864a9efcaf8e Mon Sep 17 00:00:00 2001 From: Hyperling Date: Thu, 16 Jul 2026 16:49:59 -0700 Subject: [PATCH] LXQt tested successfully. --- tasks/workstation/linux/software/lxqt.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 tasks/workstation/linux/software/lxqt.yml 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