From ee86712d7898af01bdff9a695c9cc7e6f90a10fa Mon Sep 17 00:00:00 2001 From: "[yuri]" <[yuri.kuit@gmail.com]> Date: Tue, 11 Nov 2025 14:24:04 +0100 Subject: [PATCH] bugfix --- .../xfce-perchannel-xml/xfce4-panel.xml | 163 +++++++----------- v2/debian-full.sh | 7 +- 2 files changed, 63 insertions(+), 107 deletions(-) diff --git a/v2/config-files/debian/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml b/v2/config-files/debian/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml index 195e3ab..d11f64d 100644 --- a/v2/config-files/debian/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml +++ b/v2/config-files/debian/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml @@ -1,106 +1,61 @@ - - +This XML file does not appear to have any style information associated with it. The document tree is shown below. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/v2/debian-full.sh b/v2/debian-full.sh index 693877f..5dd51b3 100755 --- a/v2/debian-full.sh +++ b/v2/debian-full.sh @@ -126,7 +126,7 @@ if [[ "${DE}" == "xfce" || "${DDE}" == "xfce" ]]; then fi # Set basic configuration - SOURCE_DIR="$SCRIPT_DIR/config-files/debian/" + SOURCE_DIR="$SCRIPT_DIR/config-files/debian" DEST_DIR="$HOME" # 1. Check if the source directory exists @@ -137,8 +137,9 @@ if [[ "${DE}" == "xfce" || "${DDE}" == "xfce" ]]; then # 2. Copy files from source to destination recursively say_yellow "Copying all files and directories (including hidden ones) from $SOURCE_DIR to $DEST_DIR" - cp -vrf "$SOURCE_DIR"/.* "$SOURCE_DIR"/* "$DEST_DIR"/ - + shopt -s dotglob + cp -vrf "$SOURCE_DIR"/* "$DEST_DIR"/ + shopt -u dotglob fi