hyperterm-float
v1.0.2
Published
Make your HyperTerm windows float on top of other windows
Downloads
2
Maintainers
Readme
hyperterm-float
Make your HyperTerm windows float on top of other windows. The "always-on-top" state of the currently-focused window will be toggled when your shortcut is pressed.
Install
- Add
hyperterm-float
to your plugins array in~/.hyperterm.js
. - Add a
float
entry insidehotkeys
in theconfig
object and set the value to the shortcut you want to use (see Electron Accelerators for valid shortcuts)
module.exports = {
config: {
hotkeys: {
float: 'Command+Alt+F'
}
},
plugins: [
'hyperterm-float'
]
}
Or
module.exports = {
config: {
floatShortcut: 'Command+Alt+F'
},
plugins: [
'hyperterm-float'
]
}
Valid shortcuts
Valid shortcuts are defined by Electron and are known as Accelerators. Accelerators can contain multiple modifiers and key codes, combined by the + character.
Examples:
CommandOrControl+A
CommandOrControl+Shift+Z
Available modifiers
Command
(orCmd
for short)Control
(orCtrl
for short)CommandOrControl
(orCmdOrCtrl
for short)Alt
Option
AltGr
Shift
Super
Available key codes
0
to9
A
toZ
F1
toF24
- Punctuations like
~
,!
,@
,#
,$
, etc. Plus
Space
Tab
Backspace
Delete
Insert
Return
(orEnter
as alias)Up
,Down
,Left
andRight
Home
andEnd
PageUp
andPageDown
Escape
(orEsc
for short)VolumeUp
,VolumeDown
andVolumeMute
MediaNextTrack
,MediaPreviousTrack
,MediaStop
andMediaPlayPause
PrintScreen