如何在 Hyperterm 中设置自定义背景图片
How to set custom background image in Hyperterm
我正在尝试从我当前使用的 iTerm 切换到 Hyperterm。但是我的终端中有一个自定义背景图片,我想在新终端中继续使用它。
到目前为止,我在选项中只找到 backgroundColor
,但没有找到关于背景图片的内容。
经过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;
}
`
};
希望对其他人有所帮助。
我设法使用
更改它
// 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
对我们不起作用
我正在尝试从我当前使用的 iTerm 切换到 Hyperterm。但是我的终端中有一个自定义背景图片,我想在新终端中继续使用它。
到目前为止,我在选项中只找到 backgroundColor
,但没有找到关于背景图片的内容。
经过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;
}
`
};
希望对其他人有所帮助。
我设法使用
更改它// 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
对我们不起作用