This commit is contained in:
[yuri]
2025-11-11 14:55:27 +01:00
parent 2a49518887
commit b2fd77fe12

View File

@@ -135,12 +135,14 @@ if [[ "${DE}" == "xfce" || "${DDE}" == "xfce" ]]; then
exit 1
fi
# 2. Aggressively Stop Xfce Processes
say_yellow "Stopping Xfce Panel and Configuration Daemon to prevent settings overwrite..."
pkill xfce4-panel
pkill xfconfd
pkill xfwm4
sleep 1
# 2. Aggressively Stop Xfce Processes if XFCE active
if pgrep -x "xfce4-panel" > /dev/null; then
say_yellow "Stopping Xfce Panel and Configuration Daemon to prevent settings overwrite..."
pkill xfce4-panel
pkill xfconfd
pkill xfwm4
sleep 1
fi
# 3. Copy files from source to destination recursively
say_yellow "Copying all files and directories (including hidden ones) from $SOURCE_DIR to $DEST_DIR"