flyingpie / windows-terminal-quake

Enable Quake-style dropdown for (almost) any application.
https://wtq.flyingpie.nl
MIT License
598 stars 39 forks source link

Feature request: add option to select monitor #43

Closed dfyx closed 3 years ago

dfyx commented 4 years ago

Currently, using the hotkey causes the terminal appear on the monitor where the mouse cursor is. It would be nice to have an option to set an integer that identifies which monitor the terminal should appear on with null being the current behavior.

flyingpie commented 4 years ago

@dfyx Great suggestion! I'll look into this for a coming release soon :)

flyingpie commented 3 years ago

@dfyx Comes in the next release, which I'm finishing up right now. Look for the "PreferMonitor" and "MonitorIndex" settings:

{
    // What monitor to preferrably drop the terminal
    // "WithCursor" (default), "Primary" or "AtIndex"
    "PreferMonitor": "AtIndex",

    // If "PreferMonitor" is set to "AtIndex", this setting determines what monitor to choose.
    // Zero based, eg. 0, 1, etc.
    "MonitorIndex": 0
}