21 lines
535 B
YAML
21 lines
535 B
YAML
---
|
|
# 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
|