wezterm.gui.screens()
¶
Since: Version 20220807-113146-c2fee766
The functionality described in this section requires version 20220807-113146-c2fee766 of wezterm, or a more recent version.
Returns information about the screens connected to the system.
The follow example was typed into the Debug
Overlay (by default: press
CTRL-SHIFT-L
) on a macbook:
> wezterm.gui.screens()
{
"active": {
"height": 1800,
"name": "Built-in Retina Display",
"width": 2880,
"x": 0,
"y": 0,
},
"by_name": {
"Built-in Retina Display": {
"height": 1800,
"name": "Built-in Retina Display",
"width": 2880,
"x": 0,
"y": 0,
},
},
"main": {
"height": 1800,
"name": "Built-in Retina Display",
"width": 2880,
"x": 0,
"y": 0,
},
"origin_x": 0,
"origin_y": 0,
"virtual_height": 1800,
"virtual_width": 2880,
}
The return value is a table with the following keys:
active
- contains information about the active screen. The active screen is the one which has input focus. On some systems, wezterm will return the same information as themain
screen screen.main
- contains information about the main screen. The main screen is the primary screen: the one that has the menu bar or task bar.by_name
- a table containing information about each screen, indexed by their nameorigin_x
,origin_y
,virtual_height
,virtual_width
- the bounds of the combined desktop geometry spanning all connected screens
The screen information is a table with the following keys:
name
- the name of the screen.x
,y
,width
,height
- the bounds of this screenmax_fps
- the maximum refresh rate supported by the screen, if known, ornil
otherwise. (Since: Version 20220903-194523-3bb1ed61)