자주색 플리머스 부팅 스플래시의 배경색을 다른 색으로 변경하고 싶습니다. 어떻게해야합니까?
답변
꽤 쉽습니다.
/lib/plymouth/themes/ubuntu-logo/ubuntu-logo.script
편집기로 파일 을 열고 다음과 같이 찾을 수있는 다음 두 줄을 변경하십시오.
Window.SetBackgroundTopColor (0.0, 0.00, 0.0); # Nice colour on top of the screen fading to
Window.SetBackgroundBottomColor (0.0, 0.00, 0.0); # an equally nice colour on the bottom
파일을 저장하고 다음 명령을 실행하십시오.
sudo update-initramfs -u
부팅 스플래시의 배경이 이제 자주색 대신 검은 색이어야합니다.
Ubuntu 16.04에서 테마 디렉토리 위치가로 변경되었습니다 /usr/share/plymouth/themes
.
답변
Ubuntu 16.04 이후 경로 위치가 변경되었습니다. 아래 참조
파일을 열려면
sudo nano /usr/share/plymouth/themes/ubuntu-logo/ubuntu-logo.script
그런 다음 이전과 같이이 두 행을 편집하십시오.
Window.SetBackgroundTopColor (0.0, 0.00, 0.0); # Nice colour on top of the screen fading to
Window.SetBackgroundBottomColor (0.0, 0.00, 0.0); # an equally nice colour on the bottom
그리고 다음을 실행하십시오.
sudo update-initramfs -u