summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xdebian/itzks-systems-common.postinst6
1 files changed, 5 insertions, 1 deletions
diff --git a/debian/itzks-systems-common.postinst b/debian/itzks-systems-common.postinst
index ae8bf8f..c4c1189 100755
--- a/debian/itzks-systems-common.postinst
+++ b/debian/itzks-systems-common.postinst
@@ -83,12 +83,16 @@ case "$1" in
if [ -d /usr/share/desktop-base/debian-edu-spacefun-theme ] && which update-debian-edu-artwork-spacefun 1>/dev/null; then
if readlink /etc/alternatives/desktop-theme | grep -q debian-edu-spacefun-theme; then
+ :
+ else
update-debian-edu-artwork-spacefun configure
fi
fi
if [ -e /etc/plymouth/plymouthd.conf ] && which plymouth-set-default-theme 1>/dev/null && which update-initramfs 1>/dev/null; then
- if ! grep -q "Theme=solar" /etc/plymouth/plymouthd.conf; then
+ if grep -q "Theme=solar" /etc/plymouth/plymouthd.conf; then
+ :
+ else
plymouth-set-default-theme solar
update-initramfs -k all -u
fi