如何在Hyperterm中设置自定义背景图像

时间:2016-08-05 18:03:09

标签: hyperterm

我正在尝试从我目前正在使用的iTerm切换到Hyperterm。但是我的终端有一个自定义的背景图像,我想继续在新的终端中使用它。

到目前为止,我在选项中只找到了backgroundColor,但没有关于背景图片。

2 个答案:

答案 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对我们无效