shell/install/grub-customizer

16 lines
377 B
Plaintext
Raw Normal View History

2024-07-31 23:26:44 +08:00
#!/bin/bash
##makedesc: Install grub-customizer (latest + ppa)
2024-11-24 21:13:37 +08:00
source "$( dirname $(readlink -e -- "${BASH_SOURCE}"))/../helpers.sh" || exit 255
2024-07-31 23:26:44 +08:00
title
sudo add-apt-repository -y ppa:danielrichter2007/grub-customizer && \
sudo apt install -y --autoremove grub-customizer
[ $? = 0 ] && {
echo
success "grub-customizer installed!"
grub-customizer -v
echo
}