37 lines
686 B
Lua
37 lines
686 B
Lua
--###############
|
|
--## MONITORS ###
|
|
--###############
|
|
|
|
-- See https://wiki.hypr.land/Configuring/Monitors/
|
|
|
|
-- Generated by hyprlang2lua. Review TODOs before reloading Hyprland.
|
|
|
|
hl.monitor({
|
|
output = "DP-2",
|
|
mode = "2560x1440@165.00Hz",
|
|
position = "0x0",
|
|
scale = "1",
|
|
})
|
|
|
|
hl.monitor({
|
|
output = "HDMI-A-1",
|
|
mode = "1920x1080@74.97Hz",
|
|
position = "2560x0",
|
|
scale = "1",
|
|
})
|
|
|
|
hl.monitor({
|
|
output = "DP-1",
|
|
mode = "1920x1080",
|
|
position = "1280x-1080",
|
|
scale = "1",
|
|
})
|
|
|
|
-- automatically place any other monitors on the right of the other ones
|
|
hl.monitor({
|
|
output = "",
|
|
mode = "preferred",
|
|
position = "auto",
|
|
scale = "auto",
|
|
})
|