Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bgw/hyper-native-window-decoration
Native window decorations in HyperTerm
https://github.com/bgw/hyper-native-window-decoration
hyper hyperterm hyperterm-theme zeit
Last synced: about 1 month ago
JSON representation
Native window decorations in HyperTerm
- Host: GitHub
- URL: https://github.com/bgw/hyper-native-window-decoration
- Owner: bgw
- Created: 2017-11-26T18:44:38.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-03-06T20:31:54.000Z (almost 2 years ago)
- Last Synced: 2024-12-19T20:36:52.278Z (about 1 month ago)
- Topics: hyper, hyperterm, hyperterm-theme, zeit
- Language: JavaScript
- Size: 443 KB
- Stars: 9
- Watchers: 1
- Forks: 5
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# hyper-native-window-decoration
![](screenshot.png)
Native window decorations in HyperTerm.
**Important:** Designed for Hyper 2.x.
---
## Why?
Hyper uses it's own client-side decorations, and unless you're on a Mac, these
decorations don't fit in well with the rest of the desktop environment. Using
the platform's native window decorations is an easy way to make the terminal
blend in.Here's that same screenshot, without this plugin:
![](screenshot-without.png)
## Install
Edit your `~/.hyper.js`:
```
plugins: [
'hyper-native-window-decoration',
],
```## Configuration
You can add configuration options to your `.hyper.js` configuration file:
```
module.exports = {
...
config: {
...
nativeWindowDecoration: {
menuBar: 'hide',
},
...
},
...
};
```### `menuBar` (optional, string)
By default, this plugin will auto-hide the menu bar. You can toggle visibility
using the alt key.If you'd like to change this behavior, you can set `menuBar` to:
- `show`: Always show the menu bar.
- `disable`: Never show the menu bar, even if `alt` is pressed. Keyboard
shortcuts and the right-click context menu will still work.
- `hide`: The default behavior. Hide the menu bar unless `alt` is pressed.