1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【Zed】ウィンドウの背景を透過する方法

Posted at

設定方法

background.appearanceという設定を使用してウィンドウの背景を透過させることができます。

透過

{
  "experimental.theme_overrides": {
    "background.appearance": "transparent"
  }
}

ぼかし

{
  "experimental.theme_overrides": {
    "background.appearance": "blurred"
  }
}

完全な透過効果を得るには、backgroundeditor.backgroundなども透過色に設定する必要があります。

{
  "experimental.theme_overrides": {
    "background.appearance": "blurred",
   	"background": "#00000000",
    "editor.background": "#00000000"
  }
}

上記の場合にはエディター部分のみ透過されます。

参考

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?