Skip to content

Instantly share code, notes, and snippets.

@NanoDano
Created March 9, 2021 04:29
Show Gist options
  • Save NanoDano/4e38f455ebeed0e4e1580179deef9474 to your computer and use it in GitHub Desktop.
Save NanoDano/4e38f455ebeed0e4e1580179deef9474 to your computer and use it in GitHub Desktop.
My custom config file to set GRUB menu colors
#!/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