Change name to kali-themes and kali-themes-common

This commit is contained in:
Sophie Brun
2019-11-01 11:11:56 +01:00
parent 00e09840ea
commit 9481728e58
7 changed files with 8 additions and 8 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-themes-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#