Native window decorations in HyperTerm.
Important: Designed for Hyper 2.x.
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:
Edit your ~/.hyper.js
:
plugins: [
'hyper-native-window-decoration',
],
You can add configuration options to your .hyper.js
configuration file:
module.exports = {
...
config: {
...
nativeWindowDecoration: {
menuBar: 'hide',
},
...
},
...
};
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 ifalt
is pressed. Keyboard shortcuts and the right-click context menu will still work.hide
: The default behavior. Hide the menu bar unlessalt
is pressed.