release candidate
This commit is contained in:
@ -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:
|
||||
|
||||
Reference in New Issue
Block a user