在里边放入你自己的css文档和一些图片。以笔者为例,我的vscode的style是
/**vscode_style.css*/ body{ pointer-events: auto !important; background-size: 100% !important; opacity: 0.90 !important; background-position: 0 0 !important; /**change your image url here*/ background-image: url('./bg.png'); content: ''; position: absolute;; z-index: 999; width: 100%; background-repeat: no-repeat; }
然后找到vscode程序文件夹,linux上一般在'/opt'
目录下。在{vscode_dir}/resources/app/out/vs/workbench
下修改workbench.desktop.main.css
就可以修改vscode的样式啦。
@import "/home/huaiyu/.vscode/vscode_style/vscode_style.css";
重启vscode就好了,当你重启后发现vscode提醒你your code installation appears to be corrupt
,直接忽略就它~
"window.titleBarStyle": "custom",
可以自己定制标题栏的样式。
更多编程相关知识,请访问:编程视频!!
以上就是聊聊给vscode编辑器设置图片背景的方法的详细内容,更多请关注其它相关文章!