Moved xfce theme specific from kali-defaults

This commit is contained in:
Sophie Brun
2019-10-22 11:26:31 +02:00
parent 0dbeed74cc
commit 6ee94be2b4
8 changed files with 89 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
#!/bin/sh
set -e
if [ "$1" = "configure" ]; then
for file in /etc/xdg/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml
do
orig_file="/usr/share/kali-theme-common/$(basename $file)"
if [ ! -e $file ] && [ -e $orig_file ]; then
echo "Installing $orig_file as $file"
mkdir -p $(dirname $file)
cp $orig_file $file
fi
done
dconf update || true
fi
#DEBHELPER#