Convert hyprland config to lua

This commit is contained in:
Sem
2026-05-21 00:08:15 +02:00
parent 6dfd4eac43
commit 5be218807c
26 changed files with 1133 additions and 12 deletions

36
hypr/monitors.lua Normal file
View File

@@ -0,0 +1,36 @@
--###############
--## 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",
})