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 new file mode 100644 index 0000000..195e3ab --- /dev/null +++ b/v2/config-files/debian/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml @@ -0,0 +1,106 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/v2/debian-full.sh b/v2/debian-full.sh index 5eb2546..d3f1bd0 100755 --- a/v2/debian-full.sh +++ b/v2/debian-full.sh @@ -125,6 +125,21 @@ if [[ "${DE}" == "xfce" || "${DDE}" == "xfce" ]]; then say_green "XFCE defeault terminal set to alacritty!" fi + # Set basic configuration + SOURCE_DIR="config-files/debian" + DEST_DIR="$HOME" + + # 1. Check if the source directory exists + if [ ! -d "$SOURCE_DIR" ]; then + say_red "Error: Source directory '$SOURCE_DIR' not found. Aborting." + exit 1 + fi + + # 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"/ + + fi # End of script