[DEBIAN] Change the GRUB background image
GRUB Background image 에 대해 변경하는 방법입니다. 메모할겸 작성해둡니다.
/boot/grub/grub.cfg.파일 내 “GRUB_BACKGROUND” 값을 통해 배경 이미지 변경이 가능합니다.
#> vim /boot/grub/grub.cfg
GRUB_DEFAULT=0
GRUB_TIMEOUT=5
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet"
GRUB_CMDLINE_LINUX=""
GRUB_BACKGROUND="/usr/share/images/desktop-base/moreblue-orbit-splash.png"
저는 기존에 적용된 부분이 있어 아래 부분에 적용하였습니다.
if background_image /usr/share/images/desktop-base/joy-grub.png; then
set color_normal=white/black
set color_highlight=black/white
else
set menu_color_normal=cyan/blue
set menu_color_highlight=white/blue
fi
저장 후 update-grub를 통해 grub를 업데이트합니다.
#> update-grub #> reboot
Change! |