You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
469 B
Plaintext
24 lines
469 B
Plaintext
7 years ago
|
#!/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
|
||
7 years ago
|
grub-mkconfig -o /boot/grub/grub.cfg
|
||
7 years ago
|
|
||
7 years ago
|
echo -e "\n All done!"
|
||
7 years ago
|
|
||
|
else
|
||
7 years ago
|
echo -e "\n Please run this script by root..."
|
||
7 years ago
|
fi
|
||
|
|
||
|
|