summarylogtreecommitdiffstats
path: root/asua_zenbook_ux3405ma.install
blob: 310d71d9011934eb5a69e5c1efb18b0c1dc40d92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
post_install() {
    echo "Regenerating GRUB configuration..."
    
    grub-mkconfig -o /boot/grub/grub.cfg
}

post_upgrade() {
    post_install
}

post_remove() {
    echo "Regenerating GRUB configuration after removal..."

    grub-mkconfig -o /boot/grub/grub.cfg
}