fixed Qt5 theme config

This commit is contained in:
julien
2025-09-23 19:52:23 +02:00
parent f3cdbcdc8c
commit 36e0ea88a0
2 changed files with 15 additions and 10 deletions

View File

@@ -14,12 +14,17 @@ if [ $? -ne 0 ]; then
fi
# Copy user config files
if [ ! -d ~/.config ]; then
mkdir ~/.config
fi
cp -r config/* ~/.config
if [ ! -d /etc/skel/.config ]; then
mkdir /etc/skel/.config
fi
cp -r config/* /etc/skel/.config
cp -r config/. /etc/skel/.config
for f in /home/*
do
if [ ! -d $f/.config ]; then
mkdir $f/.config
fi
cp -r config/. $f/.config
chown -R ${f##*/}:${f##*/} $f/.config
done