15 lines
548 B
Lua
15 lines
548 B
Lua
-- hl.monitor({
|
|
-- -- Use 'desc:' followed by your monitor's exact string from hyprctl
|
|
-- output="desc:Samsung Electric Company Odyssey G95C HNTL300212",
|
|
-- mode = "5120x1440@240", -- Explicitly lock the ultrawide canvas & high refresh rate
|
|
-- scale = 1,
|
|
-- vrr = true
|
|
-- })
|
|
|
|
hl.monitor({
|
|
output = "HEADLESS-2",
|
|
mode = "2400x1080@60", -- Adjust to your phone's native resolution
|
|
position = "auto", -- Or specific coordinates like "1920x0"
|
|
scale = 2 -- Increase if the UI is too small to read
|
|
})
|