scatterd-dotfiles/Core/parch-branding/parch-branding.install
2024-05-01 10:16:52 +03:30

15 lines
396 B
Text

post_install() {
mv -f etc/os-release_parch etc/os-release
mv -f usr/lib/os-release_parch usr/lib/os-release
mv -f etc/issue_parch etc/issue
mv -f etc/lsb-release_parch etc/lsb-release
if [ -f /etc/default/grub ]; then
sed -i s/GRUB_DISTRIBUTOR=\"Arch\"/GRUB_DISTRIBUTOR=\"Parch\"/g etc/default/grub
grub-mkconfig -o /boot/grub/grub.cfg
fi
}
post_upgrade() {
post_install
}