Change name to kali-themes and kali-themes-common
This commit is contained in:
Vendored
+21
@@ -0,0 +1,21 @@
|
||||
#!/bin/sh
|
||||
|
||||
set -e
|
||||
|
||||
DIVERT_FILE="/etc/xdg/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml"
|
||||
|
||||
case "$1" in
|
||||
install)
|
||||
if [ "$(dpkg-divert --listpackage $DIVERT_FILE)" = "kali-defaults" ]; then
|
||||
rm -f $DIVERT_FILE
|
||||
dpkg-divert --rename --package kali-defaults \
|
||||
--divert $DIVERT_FILE.original \
|
||||
--remove $DIVERT_FILE
|
||||
fi
|
||||
dpkg-divert --rename --package kali-themes \
|
||||
--divert $DIVERT_FILE.original \
|
||||
--add $DIVERT_FILE
|
||||
;;
|
||||
esac
|
||||
|
||||
#DEBHELPER#
|
||||
Reference in New Issue
Block a user