From e97cd36e7da36aa5f1f3a0dfc9b197a8edd041a6 Mon Sep 17 00:00:00 2001 From: Matt Date: Sun, 12 Oct 2025 16:51:23 -0700 Subject: [PATCH] release candidate --- tasks/autologin.yaml | 11 ++++++++--- tasks/main.yaml | 4 ++++ 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/tasks/autologin.yaml b/tasks/autologin.yaml index f05d9a7..1cb945d 100644 --- a/tasks/autologin.yaml +++ b/tasks/autologin.yaml @@ -53,16 +53,21 @@ shell: cat /etc/os-release | grep VERSION_CODENAME | cut -d '=' -f 2 register: debian_codename -- name: Set sddm_method if needed +- name: Set sddm_method to wayland if amd and bookworm when: "'amd' in cpu_architecture and 'bookworm' in debian_codename.stdout" set_fact: sddm_method: "plasmawayland.desktop" -- name: Set sddm_method for x11 - when: force_x11 | bool +- name: Set sddm_method for x11 when not arm + when: force_x11 | bool and not armcpu_check | bool set_fact: sddm_method: "plasmax11" +- name: Set sddm_method for arm + when: armcpu_check | bool + set_fact: + sddm_method: "plasma" + # Configure Autologin - name: autologin - configure autologin et. al. template: diff --git a/tasks/main.yaml b/tasks/main.yaml index 98113c5..9522b58 100644 --- a/tasks/main.yaml +++ b/tasks/main.yaml @@ -1,5 +1,9 @@ --- +- name: Chrome Kiosk - display initial kiosk_service_templates + debug: + msg: "{{ kiosk_service_templates }}" + - name: check arch if needed when: refresh_special | bool block: