mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-06 12:39:35 +02:00
12 lines
517 B
Lua
12 lines
517 B
Lua
-- See https://wiki.hypr.land/Configuring/Basics/Monitors/
|
|
-- List current monitors and resolutions possible: hyprctl monitors all
|
|
|
|
local omarchy_gdk_scale = 2
|
|
local omarchy_monitor_scale = "auto"
|
|
|
|
hl.env("GDK_SCALE", tostring(omarchy_gdk_scale))
|
|
hl.monitor({ output = "", mode = "preferred", position = "auto", scale = omarchy_monitor_scale })
|
|
|
|
-- Portrait/rotated secondary monitor (transform: 1 = 90°, 3 = 270°)
|
|
-- hl.monitor({ output = "DP-2", mode = "preferred", position = "auto", scale = 1, transform = 1 })
|