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

问题描述 投票:0回答:2

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

到目前为止,我在选项中只找到了

backgroundColor
,但没有找到任何关于背景图像的信息。

terminal hyperterm vercel-hyper-terminal
2个回答
7
投票

经过Github上的一些讨论,我找到了解决方案。将以下选项添加到您的配置文件中:

module.exports = {
  css: `
    .terms_terms {
      background: url(file://path-to-file) center;
      background-size: cover;
    }
  `,

  termCSS: `
    x-screen {
      background: transparent !important;
    }
  `
};

希望对其他人有帮助。


5
投票

我设法使用

更改它
// 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
对我们来说不起作用

© www.soinside.com 2019 - 2024. All rights reserved.