Moved xfce theme specific from kali-defaults
This commit is contained in:
Vendored
+2
@@ -36,6 +36,8 @@ Package: kali-theme
|
||||
Architecture: all
|
||||
Depends: kali-desktop-base (= ${source:Version}),
|
||||
${misc:Depends}
|
||||
Breaks: kali-defaults (<< 2019.4.0)
|
||||
Replaces: kali-defaults (<< 2019.4.0)
|
||||
Description: Configure all desktops to use the Kali theme
|
||||
Installing this package should configure most desktops to use the Kali theme
|
||||
by default.
|
||||
|
||||
Vendored
+1
@@ -8,3 +8,4 @@ usr/share/icons/
|
||||
usr/share/plymouth/
|
||||
usr/share/gnome-background-properties/
|
||||
usr/share/wallpapers/
|
||||
xfce/xsettings.xml usr/share/kali-theme-common/
|
||||
|
||||
Vendored
+1
@@ -0,0 +1 @@
|
||||
xfce/terminalrc etc/xdg/xfce4/terminal/
|
||||
Vendored
+18
@@ -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#
|
||||
Vendored
+14
@@ -0,0 +1,14 @@
|
||||
#!/bin/sh
|
||||
|
||||
set -e
|
||||
|
||||
case "$1" in
|
||||
remove)
|
||||
rm -f /etc/xdg/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml
|
||||
dpkg-divert --rename --package kali-theme \
|
||||
--divert /etc/xdg/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml.original \
|
||||
--remove /etc/xdg/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml
|
||||
;;
|
||||
esac
|
||||
|
||||
#DEBHELPER#
|
||||
Vendored
+13
@@ -0,0 +1,13 @@
|
||||
#!/bin/sh
|
||||
|
||||
set -e
|
||||
|
||||
case "$1" in
|
||||
install)
|
||||
dpkg-divert --rename --package kali-theme \
|
||||
--divert /etc/xdg/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml.original\
|
||||
--add /etc/xdg/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml
|
||||
;;
|
||||
esac
|
||||
|
||||
#DEBHELPER#
|
||||
Reference in New Issue
Block a user