From 79f0fb7d521d1bbf0fba2aaf040bca8e0c0ac26f Mon Sep 17 00:00:00 2001 From: kai Date: Sat, 25 Apr 2026 09:04:40 +0000 Subject: [PATCH] temp Ordner sofort anlegen MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # 📁 Temp Ordner sofort anlegen TEMP_DIR="$HOME/Dokumente/temp" mkdir -p "$TEMP_DIR" echo "📁 Temp-Ordner erstellt: $TEMP_DIR" --- temp-cleanup/install.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/temp-cleanup/install.sh b/temp-cleanup/install.sh index 41c4ab8..383595a 100644 --- a/temp-cleanup/install.sh +++ b/temp-cleanup/install.sh @@ -15,6 +15,12 @@ echo "📁 Current: $CURRENT_DIR" mkdir -p "$SYSTEMD_USER_DIR" +# 📁 Temp Ordner sofort anlegen +TEMP_DIR="$HOME/Dokumente/temp" +mkdir -p "$TEMP_DIR" + +echo "📁 Temp-Ordner erstellt: $TEMP_DIR" + echo "⚙️ systemd setup only (NO FILE COPYING ANYMORE)" sed "s|ExecStart=.*|ExecStart=$CURRENT_DIR/$SCRIPT|" \