linuxinstaller/ansible/roles/theme-libretic/tasks/main.yml

39 lines
1 KiB
YAML
Raw Normal View History

2024-09-30 19:32:52 +02:00
- name: Dossier du thème plymouth
ansible.builtin.file:
path: /usr/share/plymouth/themes/spin-libretic
state: directory
owner: root
group: root
mode: u=rwx,g=rx,o=rx
notify: update-initramfs
2024-10-06 23:44:04 +02:00
- name: Installe le thème plymouth
ansible.posix.synchronize:
2024-09-30 19:32:52 +02:00
src: spin-libretic
2024-10-02 08:23:24 +02:00
dest: /usr/share/plymouth/themes/
2024-10-06 23:44:04 +02:00
owner: false
group: false
delete: true
2024-09-30 19:32:52 +02:00
notify: update-initramfs
- name: Active le thème plymouth
ansible.builtin.file:
src: /usr/share/plymouth/themes/spin-libretic/spin-libretic.plymouth
dest: /etc/alternatives/default.plymouth
state: link
notify: update-initramfs
- name: Copie le fond d'écran
ansible.builtin.copy:
src: linux-mint-libretic-wallpaper.jpg
dest: /usr/share/backgrounds/linuxmint/
owner: root
group: root
mode: u=rw,g=r,o=r
- name: Active le fond d'écran
ansible.builtin.file:
src: /usr/share/backgrounds/linuxmint/linux-mint-libretic-wallpaper.jpg
dest: /usr/share/backgrounds/linuxmint/default_background.jpg
state: link