
Security News
GitHub Actions Checkout Now Blocks Risky pull_request_target Checkouts
GitHub Actions checkout now blocks risky pull_request_target checkouts by default to help prevent pwn request supply chain attacks.
hyperline-magus
Advanced tools
HyperLine is a status line plugin for Hyper.app. It shows you useful system information such as free memory, uptime and CPU usage. It's designed to be unobtrusive and will match the look of the theme you're currently running.

To install, edit ~/.hyper.js and add "hyperline" to plugins:
plugins: [
"hyperline",
],
Hyperline shows a collection of information plugins which can be fully configured.
By default, all available plugins are displayed in pre-defined colors.
You can change which plugins are displayed by editing .hyper.js. Start
out with the default config (below), and customize Hyperline to your liking.
color string is used to specify the color of the line itself.plugins array determines which plugins are rendered, and in which order.
options object. This can be used to change
the color of the each plugin. Some plugins allow you to choose multiple colors.module.exports = {
...
config: {
...
hyperline: {
background: 'transparent',
color: 'black',
plugins: [
{
name: 'hostname',
options: {
color: 'lightBlue'
}
},
{
name: 'ip',
options: {
color: 'magenta'
}
},
{
name: 'memory',
options: {
color: 'white'
}
},
{
name: 'uptime',
options: {
color: 'lightYellow'
}
},
{
name: 'cpu',
options: {
colors: {
high: 'lightRed',
moderate: 'lightYellow',
low: 'lightGreen'
}
}
},
{
name: 'network',
options: {
color: 'lightCyan'
}
},
{
name: 'battery',
options: {
colors: {
fine: 'lightGreen',
critical: 'lightRed'
}
}
}
]
}
...
}
...
}
Feel free to contribute to HyperLine by requesting a feature, submitting a bug or contributing code.
To set up the project for development:
~/.hyper_plugins/local/npm install within the project directorynpm run build to build the plugin OR npm run dev to build the plugin and watch for file changes.localPlugins in ~/.hyper.js.MIT
FAQs
Handy status line for Hyper.app
We found that hyperline-magus demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
GitHub Actions checkout now blocks risky pull_request_target checkouts by default to help prevent pwn request supply chain attacks.

Product
Socket now supports Custom Roles and Repository Access Permissions so organizations can control who can access specific repositories and actions.

Product
Socket MCP now lets AI assistants review org alerts, investigate threats using the Socket threat feed, and inspect package files in addition to dependency scoring.