release candidate

This commit is contained in:
2025-10-12 16:51:23 -07:00
parent 01b88d4c07
commit e97cd36e7d
2 changed files with 12 additions and 3 deletions

View File

@ -53,16 +53,21 @@
shell: cat /etc/os-release | grep VERSION_CODENAME | cut -d '=' -f 2 shell: cat /etc/os-release | grep VERSION_CODENAME | cut -d '=' -f 2
register: debian_codename 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" when: "'amd' in cpu_architecture and 'bookworm' in debian_codename.stdout"
set_fact: set_fact:
sddm_method: "plasmawayland.desktop" sddm_method: "plasmawayland.desktop"
- name: Set sddm_method for x11 - name: Set sddm_method for x11 when not arm
when: force_x11 | bool when: force_x11 | bool and not armcpu_check | bool
set_fact: set_fact:
sddm_method: "plasmax11" sddm_method: "plasmax11"
- name: Set sddm_method for arm
when: armcpu_check | bool
set_fact:
sddm_method: "plasma"
# Configure Autologin # Configure Autologin
- name: autologin - configure autologin et. al. - name: autologin - configure autologin et. al.
template: template:

View File

@ -1,5 +1,9 @@
--- ---
- name: Chrome Kiosk - display initial kiosk_service_templates
debug:
msg: "{{ kiosk_service_templates }}"
- name: check arch if needed - name: check arch if needed
when: refresh_special | bool when: refresh_special | bool
block: block: