4
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

ターミナルの背景を特定の画像にして、可愛くしたりかっこよくしたいって思ったことありませんか?

そんな時にweztermで後ろの背景画像を指定する方法を紹介したいと思います。

weztermに関する記事

weztermに関する記事は以下で紹介しています。

変更方法

下のようにwezterm.luaに記述します。

wezterm.lua
config.window_background_image = wezterm.home_dir .. "画像のある位置の絶対パス"

wezterm.home_dirは、ホームディレクトリをよしなに指定してくれます。
Macの場合だと, /User/<ユーザー名>にしてくれます。
そこの位置から画像のあるパスを指定しています。

また、次のような書き方をすることもできます。

wezterm.lua
config.background ={
    {
        source = {
          File = wezterm.home_dir .. "画像のある位置の絶対パス",
        },
      
      },  
}

こちらの書き方だと他のレイヤーを画像と重ねることができるため、上に色を追加したりすることもできます。

例えば、上に赤色を重ねたい場合は下のように記述します。

wezterm.lua
 {
        source = {
          Gradient = {
            colors = { "#ff0000" }, 
          },
        },
        opacity = 1.0, 
        width = "100%",         
        height = "100%", 
      },
    {
        source = {
          File = wezterm.home_dir .. "画像のある位置の絶対パス",
        },
        opacity = 0.8,
        hsb = {
            brightness = 0.1,     

        },
      
      },  

こうすることで画像を使ってさらに自分好みのターミナルにすることができます。

ぜひ参考にして自分好みのターミナルを作ってみてください!

現在の設定ファイル

現在の設定ファイルは下のリポジトリです。

4
1
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
4
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?