This commit is contained in:
[yuri]
2025-11-11 14:24:04 +01:00
parent bd6ea6727e
commit ee86712d78
2 changed files with 63 additions and 107 deletions

View File

@@ -1,10 +1,8 @@
<?xml version="1.1" encoding="UTF-8"?>
This XML file does not appear to have any style information associated with it. The document tree is shown below.
<channel name="xfce4-panel" version="1.0">
<property name="configver" type="int" value="2"/>
<property name="panels" type="array">
<value type="int" value="1"/>
<value type="int" value="2"/>
<property name="dark-mode" type="bool" value="true"/>
<property name="panel-1" type="empty">
<property name="position" type="string" value="p=6;x=0;y=0"/>
@@ -27,23 +25,6 @@
<value type="int" value="10"/>
</property>
</property>
<property name="panel-2" type="empty">
<property name="autohide-behavior" type="uint" value="1"/>
<property name="position" type="string" value="p=10;x=0;y=0"/>
<property name="length" type="uint" value="1"/>
<property name="position-locked" type="bool" value="true"/>
<property name="size" type="uint" value="48"/>
<property name="plugin-ids" type="array">
<value type="int" value="11"/>
<value type="int" value="12"/>
<value type="int" value="13"/>
<value type="int" value="14"/>
<value type="int" value="15"/>
<value type="int" value="16"/>
<value type="int" value="17"/>
<value type="int" value="18"/>
</property>
</property>
</property>
<property name="plugins" type="empty">
<property name="plugin-2" type="string" value="tasklist">
@@ -72,32 +53,6 @@
<property name="style" type="uint" value="0"/>
</property>
<property name="plugin-10" type="string" value="actions"/>
<property name="plugin-11" type="string" value="showdesktop"/>
<property name="plugin-12" type="string" value="separator"/>
<property name="plugin-13" type="string" value="launcher">
<property name="items" type="array">
<value type="string" value="17628643741.desktop"/>
</property>
</property>
<property name="plugin-14" type="string" value="launcher">
<property name="items" type="array">
<value type="string" value="17628643742.desktop"/>
</property>
</property>
<property name="plugin-15" type="string" value="launcher">
<property name="items" type="array">
<value type="string" value="17628643743.desktop"/>
</property>
</property>
<property name="plugin-16" type="string" value="launcher">
<property name="items" type="array">
<value type="string" value="17628643744.desktop"/>
</property>
</property>
<property name="plugin-17" type="string" value="separator"/>
<property name="plugin-18" type="string" value="directorymenu">
<property name="base-directory" type="string" value="/home/yuri"/>
</property>
<property name="plugin-19" type="string" value="battery"/>
<property name="plugin-20" type="string" value="xfce4-clipman-plugin"/>
<property name="plugin-21" type="string" value="whiskermenu">

View File

@@ -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