diff options
Diffstat (limited to 'debian')
-rwxr-xr-x | debian/itzks-systems-common.postinst | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/debian/itzks-systems-common.postinst b/debian/itzks-systems-common.postinst index aa3784d..2f49073 100755 --- a/debian/itzks-systems-common.postinst +++ b/debian/itzks-systems-common.postinst @@ -98,8 +98,10 @@ case "$1" in if grep -q "Theme=solar" /etc/plymouth/plymouthd.conf; then : else - plymouth-set-default-theme solar - update-initramfs -k all -u + if [ -f /usr/share/plymouth/themes/solar/solar.plymouth ]; then + plymouth-set-default-theme solar + update-initramfs -k all -u + fi fi fi ;; |