Created
March 9, 2021 04:29
-
-
Save NanoDano/4e38f455ebeed0e4e1580179deef9474 to your computer and use it in GitHub Desktop.
My custom config file to set GRUB menu colors
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Requires executable bit | |
# Move to `/etc/grub.d/99_dano_grub_colors` | |
# and run `sudo update-grub` | |
echo "set menu_color_normal=light-cyan/dark-gray" | |
echo "set menu_color_highlight=dark-gray/light-cyan" | |
echo "set color_normal=white/black" | |
echo "set color_highlight=black/white" | |
# To change image, update `/etc/default/grub` with the image path | |
# GRUB_BACKGROUND=/usr/share/images/grub/Plasma-lamp.tga | |
# That image comes from the `grub2-splashimages` package. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment