blob: 2857def1db01400bfe1a644b57faa5fe2397fd34 (
plain)
1
2
3
4
5
6
7
8
9
|
_themedir="/usr/share/plymouth/themes/arch-breeze"
post_install() {
[ -e "${_themedir}/logo.png" ] || ln -s ${_themedir}/logo{_full_blue,}.png
}
pre_remove() {
rm -f ${_themedir}/logo.png
}
|