LoginSignup
19
13

More than 5 years have passed since last update.

Jenkinsの左上のおじさんアイコンを変更する

Last updated at Posted at 2016-05-28

Jenkins ver2.5で確認。

  • おじさんアイコンを変えたい画像を用意する。
  • JENKINS_HOME の /userContent にアイコンをアップロードする(icon.pngとします)。
  • 以下のようなCSSを用意して、同様に /userContent にアップロードする(icon.cssとします)。
#jenkins-head-icon {
content:url('/userContent/icon.png');
height:36px;
}
  • Jenkinsの管理→プラグインの管理→Simple Theme Pluginをインストールする。
  • Jenkinsの管理→システムの設定→Theme→URL of theme CSS に /userContent/icon.css を指定する、
  • ちょっと幸せになれます

私は、https://github.com/jenkins-contrib-themes/jenkins-material-theme のCSSをダウンロードして、最下部にこれを追加しています。
同様に、faviconについても、以下を参考に変更することができました。

19
13
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
19
13