UNPKG

@robbplo/hyperterm-summon

Version:

Summon your Hyperterm windows with a system-wide hotkey

8 lines (5 loc) 232 B
const { hideWindows, showWindows } = require('./windows'); module.exports = app => { const focusedWindows = [...app.getWindows()].filter(w => w.isFocused()); focusedWindows.length > 0 ? hideWindows(app) : showWindows(app); };