CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
orangepi-xunlong

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

GitHub Repository: orangepi-xunlong/orangepi-build
Path: blob/next/external/packages/plymouth-theme-orangepi/debian/postinst
Views: 3960
#!/bin/sh -e

if [ "x$1" = xconfigure ]; then
	if which plymouth-set-default-theme >/dev/null 2>&1; then
		# For Debian
		plymouth-set-default-theme orangepi
	else
		# For Ubuntu
		update-alternatives \
			--install /usr/share/plymouth/themes/default.plymouth default.plymouth \
			/usr/share/plymouth/themes/orangepi/orangepi.plymouth 150
	fi

	if which update-initramfs >/dev/null 2>&1; then
		update-initramfs -u
	fi
fi