web-dev-qa-db-ja.com

Ubuntuプリマスブート画面の紫色の背景色を変更するにはどうすればよいですか?

紫色のプリマスブートスプラッシュの背景色を別の色に変更したいのですが、どうすればよいですか?

19
NES

とても簡単です。

ファイル/lib/plymouth/themes/ubuntu-logo/ubuntu-logo.scriptをエディターで開き、次のような2行を次のように変更します。

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に変更されたことに注意してください。

16
NES

Ubuntu 16.04以降、パスの場所が変更されました。下記参照

ファイルを開くには:

Sudo nano /usr/share/plymouth/themes/ubuntu-logo/ubuntu-logo.script

次に、以前と同様に、次の2行を編集します。

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
5
Tuxedo Joe

GUIを使用する場合は、 Plymouth Manager を使用します。それは非常に簡単で、カスタムテーマを作成したり、提供されているテーマから1つを選んだりする必要があります。

1
Bryan