From e7e7dc871d5e08afc411bae556bf2c1576b94c30 Mon Sep 17 00:00:00 2001 From: "[yuri]" <[yuri.kuit@gmail.com]> Date: Tue, 11 Nov 2025 14:11:44 +0100 Subject: [PATCH] making xfce config --- .../xfce-perchannel-xml/xfce4-panel.xml | 106 ++++++++++++++++++ v2/debian-full.sh | 15 +++ 2 files changed, 121 insertions(+) create mode 100644 v2/config-files/debian/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml 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