shell/install/grub-customizer

16 lines
377 B
Plaintext
Raw Normal View History

2024-07-31 15:26:44 +00:00
#!/bin/bash
##makedesc: Install grub-customizer (latest + ppa)
2024-11-24 13:13:37 +00:00
source "$( dirname $(readlink -e -- "${BASH_SOURCE}"))/../helpers.sh" || exit 255
2024-07-31 15:26:44 +00: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
}