From e4b6328cafed70b63ad71dbc6b4ef77f39decc92 Mon Sep 17 00:00:00 2001 From: pan Date: Thu, 12 Feb 2026 22:11:53 +0100 Subject: [PATCH] =?UTF-8?q?Fehler=20Korrektur=20und=20Vereinfachung=20des?= =?UTF-8?q?=20Copy=20task=20f=C3=BCr=20die=20Plasma=20Konfigurationsdateie?= =?UTF-8?q?n?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- thinkpad_p50.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/thinkpad_p50.yml b/thinkpad_p50.yml index 67f34e8..7f18a15 100644 --- a/thinkpad_p50.yml +++ b/thinkpad_p50.yml @@ -96,14 +96,12 @@ - name: Überragen der Konfigurationsdateien für Plasma ansible.builtin.copy: - src: "{{ item }}" - dest: /home/{{ user_name }}/.config + src: "{{ item.src }}" + dest: "{{ item.dest }}" owner: "{{ user_name }}" group: "{{ user_name }}" mode: u+rw - loop: - - ./files/plasma-org.kde.plasma.desktop-appletsrc - - ./files/plasmashellrc + loop: "{{ plasma_config }}" - name: Terminal Anpassungen block: @@ -165,7 +163,8 @@ mode: u=rw,go=r - name: Installation der Hack Fonts - ansible.builtin.command: cmd fc-cache -fv + ansible.builtin.command: + cmd: fc-cache -fv - name: Konfigurationsdateien Überragen block: @@ -183,12 +182,14 @@ - zellij - name: Übertragen der Konfigurationsdateien in Ihre Ordner + tags: debug ansible.builtin.copy: src: "{{ item.src }}" dest: "{{ item.dest }}" owner: "{{ user_name }}" group: "{{ user_name }}" mode: u=rw + #remote_src: false loop: "{{ config_files }}" - name: Bereinigung