shalldie/vscode-background

[Bug Report] Default background

Closed this issue · 2 comments

Summary | 概述

I followed the tutorial and even tho i restarted my vscode it stills shows the default one (the anime girl)

Versions

  • OS(Win10 / Mac OSX / Linux): Win10
  • vscode: 1.19.1
    image

Background Config | 插件的配置

{
    "background.enabled": true,
    "background.fullscreen": {
      "image": "https://i.imgur.com/JFK28VB.jpeg", 
      "opacity": 0.91, 
      "size": "cover",
      "position": "center", 
      "interval": 0 
    }
}

Screenshots | 截图

https://imgur.com/a/LxS8cuU

It's images, not image, see fullscreen config

You can try:

{
    "background.enabled": true,
    "background.fullscreen": {
      "images": ["https://i.imgur.com/JFK28VB.jpeg"], 
      "opacity": 0.91, 
      "size": "cover",
      "position": "center", 
      "interval": 0 
    }
}

It worked, thanks.