[Bug Report] Default background
pushline opened this issue · 2 comments
pushline commented
Summary | 概述
I followed the tutorial and even tho i restarted my vscode it stills shows the default one (the anime girl)
Versions
Background Config | 插件的配置
{
"background.enabled": true,
"background.fullscreen": {
"image": "https://i.imgur.com/JFK28VB.jpeg",
"opacity": 0.91,
"size": "cover",
"position": "center",
"interval": 0
}
}
Screenshots | 截图
shalldie commented
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
}
}
pushline commented
It worked, thanks.