我正在尝试从我目前正在使用的iTerm切换到Hyperterm。但是我的终端有一个自定义的背景图像,我想继续在新的终端中使用它。
到目前为止,我在选项中只找到了backgroundColor
,但没有关于背景图片。
答案 0 :(得分:5)
在some discussion on Github之后,我找到了一个解决方案。将以下选项添加到配置文件中:
module.exports = {
css: `
.terms_terms {
background: url(file://path-to-file) center;
background-size: cover;
}
`,
termCSS: `
x-screen {
background: transparent !important;
}
`
};
希望对其他人有帮助。
答案 1 :(得分:1)
我设法使用
更改它// custom css to embed in the main window
css: `
.terms_terms {
background: url(file://<path-to-image>) center;
background-size: cover;
}
.terms_termGroup {
background: rgba(0,0,0,0.7) !important
}
`
在〜/ hyper.js
内使用x-screen
对我们无效