From b1ae3a7587de63c4bbcc354e74ff089da9d4132f Mon Sep 17 00:00:00 2001 From: Hyperling Date: Thu, 16 Jul 2026 16:51:57 -0700 Subject: [PATCH] Add calls to multiple desktop environment playbooks on workstations. --- local.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/local.yml b/local.yml index 0faff6f..55701b9 100644 --- a/local.yml +++ b/local.yml @@ -124,16 +124,21 @@ - include_tasks: tasks/workstation/freebsd/software/gpu.yml when: ansible_system == "FreeBSD" and bsd_gpu == true + # Window Managers without true Desktop Environments # + - include_tasks: tasks/workstation/shared/software/dwm.yml + + - include_tasks: tasks/workstation/linux/software/i3.yml + + # Polished Desktop Environments # - include_tasks: tasks/workstation/freebsd/software/gnome.yml when: ansible_system == "FreeBSD" - include_tasks: tasks/workstation/linux/software/gnome.yml when: ansible_system == "Linux" - #- include_tasks: tasks/workstation/shared/software/cinnamon.yml + - include_tasks: tasks/workstation/linux/software/cinnamon.yml - - include_tasks: tasks/workstation/shared/software/dwm.yml - #- include_tasks: tasks/workstation/shared/software/i3.yml + - include_tasks: tasks/workstation/linux/software/lxqt.yml # Software Tasks # - include_tasks: tasks/workstation/linux/software/packages.yml