Hyper mac-like window controls on linux or windows
npm install hyper-mac-controlshyper i hyper-mac-controls
~/.hyper.js with your editor).
javascript
plugins: [
'hyper-mac-controls'
],
`
3. Reload (Ctrl+Shift+R) or restart Hyper
$3
It makes use of showWindowControls to determine where to place the controls. To move the controls to the left side, change your config to the following:
`javascript
module.exports = {
config: {
...
showWindowControls: 'left',
...
}
}
`
Flip controls
Default value is true
`javascript
module.exports = {
config: {
...
hyperMacControls: {
flipped: true,
}
...
}
}
`
$3
1.2.0
- Fixed issue with latest version of HyperJS
1.1.2
- Add flipped versions again (see config option above)
1.1.0
- Update to work with Hyper 2.0
- Remove flipped versions (they are on my todo)
- Remove package specific config options and make use of showWindowControls` instead.