2025-11-23 22:14:18 +08:00
2025-11-23 16:19:43 +08:00
fix
2025-11-23 22:14:18 +08:00
fix
2025-11-23 22:14:18 +08:00
2025-11-23 16:19:43 +08:00
2025-11-23 16:19:43 +08:00
2025-11-23 16:19:43 +08:00

post_install() {
    echo -e "\n** The files have been installed in /usr/share/grub/themes/alci **\n"
    if grep -q GRUB_THEME /etc/default/grub ; then
        sed -i '/GRUB_THEME/c GRUB_THEME="/usr/share/grub/themes/alci/theme.txt"' /etc/default/grub
    else
        echo 'GRUB_THEME="/usr/share/grub/themes/alci/theme.txt"' | sudo tee -a /etc/default/grub
    fi
    grub-mkconfig -o /boot/grub/grub.cfg
}

post_upgrade() {
    post_install
}

post_remove() {
    echo -e "\n** We change the theme back to the default ArcoLinux Vimix theme **\n"
    if grep -q GRUB_THEME /etc/default/grub ; then
        sed -i '/GRUB_THEME/c GRUB_THEME="/boot/grub/themes/Vimix/theme.txt"' /etc/default/grub
    else
        echo 'GRUB_THEME="/boot/grub/themes/Vimix/theme.txt"' | sudo tee -a /etc/default/grub
    fi
    grub-mkconfig -o /boot/grub/grub.cfg  
}
Description
grub 主题
Readme GPL-3.0 312 KiB
Languages
Shell 100%