Ubuntu plymouth 부팅 화면의 자주색 배경색을 어떻게 변경합니까?


답변:


17

꽤 쉽습니다.

/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.


5
colorhexa.com/4dbcff 는 내가 원하는 색상을 찾는 데 도움이되었습니다. 예 : rgb (0 %, 62.4 %, 100 %)의 rgb (0, 159, 255)는 ubuntu-logo.script에 대해 0.0, 0.62, 1.0을 의미합니다.
Filbuntu

8
16.04에서 테마 디렉토리 위치가 다음과 같이 변경되었습니다./usr/share/plymouth/themes
Olivier

6

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

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.