loads of stuff but still not done yet

This commit is contained in:
2026-05-12 20:06:37 +01:00
parent c93ddf3818
commit b45ba4f751
11 changed files with 576 additions and 34 deletions

28
modules/monitors.lua Normal file
View File

@@ -0,0 +1,28 @@
if Hostname == "HACKSTATION" then
hl.monitor({
output = "DP-1",
position = "0x0",
mode = "1920x1080@60",
scale = "1",
})
hl.monitor({
output = "DP-2",
position = "1920x0",
mode = "1920x1080@60",
scale = "1",
})
hl.monitor({
output = "HDMI-A-1",
position = "-1920x0",
mode = "1920x1080@60",
scale = "1",
})
hl.workspace_rule({ workspace = "1", monitor = "DP-1" })
hl.workspace_rule({ workspace = "2", monitor = "HDMI-A-1" })
hl.workspace_rule({ workspace = "3", monitor = "DP-2" })
else
hl.monitor({ output = "", mode = "preferred", position = "auto", scale = "1.2" })
end