-- These configs are specifically for Altair ----------------------------------------------------------- for i = 1, 10 do hl.workspace_rule({ workspace = i, monitor = "DP-1", default_name = tostring(i) }) hl.workspace_rule({ workspace = i + 10, monitor = "DP-2", default_name = tostring(i) }) end hl.monitor({ output = "DP-1", mode = "2560x1440", position = "-1440x-510", transform = 1, }) hl.monitor({ output = "DP-2", mode = "3440x1440@164", position = "0x0", transform = 0, }) local fullscreen_windows = { "^steam_app_\\d+$" } for _, class in ipairs(fullscreen_windows) do hl.window_rule({ name = "Fullscreen " .. class, match = { class = class, }, fullscreen = true, monitor = "DP-2", center = true, }) end local maximized_windows = { "Slay the Spire" } for _, class in ipairs(maximized_windows) do hl.window_rule({ name = "Maximize " .. class, match = { class = class, }, maximixe = true, monitor = "DP-2", center = true, }) end -- MIGRATION_WARNING: Window rule conflict for 'monitor 1': 'match:title ^World of Warcraft$' (line 200) vs 'match:title ^Battle.net$' (line 202) -- MIGRATION_WARNING: Window rule conflict for 'monitor 1': 'match:title ^World of Warcraft$' (line 200) vs 'match:title ^Balatro$' (line 204) -- MIGRATION_WARNING: Window rule conflict for 'monitor 1': 'match:title ^World of Warcraft$' (line 200) vs 'match:class steam_app_1091500' (line 206) -- hl.window_rule({ -- match = { class = "monitor 1" }, -- match:title = "^World of Warcraft$", -- match:title = "^Battle.net$", -- match:title = "^Balatro$", -- match:class = "steam_app_1091500", -- }) -- PATTERN: MERGED with line 207 -- MIGRATION_WARNING: Window rule conflict for 'fullscreen on': 'match:title ^World of Warcraft$' (line 201) vs 'match:class steam_app_1091500' (line 207) -- hl.window_rule({ match = { class = "fullscreen on" }, match:title = "^World of Warcraft$", match:class = "steam_app_1091500" }) -- hl.window_rule({ match = { class = "float on" }, match:title = "^Battle.net$" }) -- hl.window_rule({ match = { class = "tile on" }, match:title = "^Balatro$" })