LoginSignup
0
4

More than 5 years have passed since last update.

VSCode で内蔵ターミナルの背景を設定する

Last updated at Posted at 2017-02-12

https://github.com/shalldie/vscode-background みたいにVSCode拡張を作ってみたいものですが、面倒だったので今後の課題ということで。

Mac版で(他のOSでも相応の場所があります)
/Applications/Visual\ Studio\ Code.app/Contents/Resources/app/out/vs/workbench/electron-browser/workbench.main.css
の末尾に、

.xterm{
  background-image: url('/path/to/image/path.jpg')!important;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

と追記すると、
スクリーンショット 2017-02-13 0.55.20.png

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