grub2-themes/grub-theme-stylishdark/Install
vinceliuice c4527c73d9 update
2018-05-22 19:08:29 +08:00

24 lines
469 B
Bash
Executable File

#!/bin/bash
ROOT_UID=0
if [ "$UID" -eq "$ROOT_UID" ]; then
# Copy StylishDark
cp -a StylishDark /boot/grub/themes
# Set StylishDark
grep "GRUB_THEME=" /etc/default/grub 2>&1 >/dev/null && sed -i '/GRUB_THEME=/d' /etc/default/grub
echo "GRUB_THEME=\"/boot/grub/themes/StylishDark/theme.txt\"" >> /etc/default/grub
# update grub
grub-mkconfig -o /boot/grub/grub.cfg
echo -e "\n All done!"
else
echo -e "\n Please run this script by root..."
fi