Migrated hyprland config to lua

This commit is contained in:
Gu://em_ 2026-08-04 11:15:48 +02:00
parent ddaad92455
commit 8587f9d2e0
9 changed files with 716 additions and 0 deletions

View file

@ -0,0 +1,37 @@
-- See https://wiki.hyprland.org/Configuring/Monitors/
-- Default
hl.monitor({
output = "",
mode = "preferred",
position = "auto-up",
scale = "auto",
})
-- Laptop screen
hl.monitor({
output = "eDP-1",
mode = "preferred",
position = "auto-down",
scale = 1,
-- supports_wide_color = 1
-- supports_hdr = 1
-- bitdepth = 10
})
-- HP home monitor
hl.monitor({
output = "DP-*",
mode = "preferred",
position = "auto-up",
scale = 1,
})
-- Dell monitor
hl.monitor({
output = "HDMI-A-1",
mode = "preferred",
position = "auto-up",
scale = 1,
})