Added sddm face icon

master
mandlm 2021-02-15 16:54:09 +01:00
parent 3f9e211c87
commit 64ba860edc
Signed by: mandlm
GPG Key ID: 4AA25D647AA54CC7
2 changed files with 21 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 115 KiB

View File

@ -68,4 +68,25 @@
mode: 0644
create: yes
- name: install user icon
become_user: "{{ account.name }}"
copy:
src: face.icon
dest: "/home/{{ account.name }}/.face.icon"
mode: "0644"
- name: grant sddm read permission to home
acl:
path: "/home/{{ account.name }}/"
entity: sddm
etype: user
permissions: x
state: present
- name: grant sddm read permission user icon
acl:
path: "/home/{{ account.name }}/.face.icon"
entity: sddm
etype: user
permissions: r
state: present