This commit is contained in:
Hannes
2026-07-02 22:11:57 +02:00
parent 421b4ca97e
commit c8bb3f40c5
2 changed files with 50 additions and 10 deletions
+4 -4
View File
@@ -8,14 +8,14 @@ if HOSTNAME == "archlinux-hypr" then
match = { match = {
class = ".*librewolf.*" class = ".*librewolf.*"
}, },
workspace = "300 silent" workspace = "30 silent"
}) })
hl.window_rule({ hl.window_rule({
name = "Mozilla Thunderbird", name = "Mozilla Thunderbird",
match = { match = {
class = ".*Thunderbird.*" class = ".*Thunderbird.*"
}, },
workspace = "301 silent" workspace = "31 silent"
}) })
--# Window rules on Monitor 4 --# Window rules on Monitor 4
hl.window_rule({ hl.window_rule({
@@ -37,7 +37,7 @@ if HOSTNAME == "archlinux-hypr" then
match = { match = {
class = ".*nextcloud.*" class = ".*nextcloud.*"
}, },
workspace = "400" workspace = "40"
}) })
elseif HOSTNAME == "hp-laptop" then elseif HOSTNAME == "hp-laptop" then
hl.window_rule({ hl.window_rule({
@@ -59,7 +59,7 @@ elseif HOSTNAME == "hp-laptop" then
match = { match = {
class = ".*nextcloud.*" class = ".*nextcloud.*"
}, },
workspace = "400" workspace = "40"
}) })
end end
+46 -6
View File
@@ -5,6 +5,25 @@ if HOSTNAME == "archlinux-hypr" then
monitor = "desc:BNQ BenQ EX2710U Y8P00876019", monitor = "desc:BNQ BenQ EX2710U Y8P00876019",
default = true, default = true,
layout = "scrolling", layout = "scrolling",
persistent = true
})
hl.workspace_rule({
workspace = "10",
monitor = "desc:BNQ BenQ EX2710U Y8P00876019",
default = false,
persistent = true
})
hl.workspace_rule({
workspace = "11",
monitor = "desc:BNQ BenQ EX2710U Y8P00876019",
default = false,
persistent = true
})
hl.workspace_rule({
workspace = "12",
monitor = "desc:BNQ BenQ EX2710U Y8P00876019",
default = false,
persistent = true
}) })
--# Workspaces on Monitor 2 --# Workspaces on Monitor 2
hl.workspace_rule({ hl.workspace_rule({
@@ -12,47 +31,68 @@ if HOSTNAME == "archlinux-hypr" then
monitor = "desc:ASUSTek COMPUTER INC PA279CRV S5LMSB007609", monitor = "desc:ASUSTek COMPUTER INC PA279CRV S5LMSB007609",
default = true, default = true,
layout = "scrolling", layout = "scrolling",
persistent = true
}) })
hl.workspace_rule({ hl.workspace_rule({
workspace = "200", workspace = "20",
monitor = "desc:ASUSTek COMPUTER INC PA279CRV S5LMSB007609", monitor = "desc:ASUSTek COMPUTER INC PA279CRV S5LMSB007609",
default = false, default = false,
persistent = true
})
hl.workspace_rule({
workspace = "21",
monitor = "desc:ASUSTek COMPUTER INC PA279CRV S5LMSB007609",
default = false,
persistent = true
})
hl.workspace_rule({
workspace = "22",
monitor = "desc:ASUSTek COMPUTER INC PA279CRV S5LMSB007609",
default = false,
persistent = true
}) })
--# Workspaces on Monitor 3 --# Workspaces on Monitor 3
hl.workspace_rule({ hl.workspace_rule({
workspace = "3", workspace = "3",
monitor = "desc:LG Electronics LG ULTRAFINE 503NTKF3L437", monitor = "desc:LG Electronics LG ULTRAFINE 503NTKF3L437",
default = true, default = true,
persistent = true
}) })
hl.workspace_rule({ hl.workspace_rule({
workspace = "300", workspace = "30",
monitor = "desc:LG Electronics LG ULTRAFINE 503NTKF3L437", monitor = "desc:LG Electronics LG ULTRAFINE 503NTKF3L437",
default = false, default = false,
persistent = true
}) })
hl.workspace_rule({ hl.workspace_rule({
workspace = "301", workspace = "31",
monitor = "desc:LG Electronics LG ULTRAFINE 503NTKF3L437", monitor = "desc:LG Electronics LG ULTRAFINE 503NTKF3L437",
default = false, default = false,
persistent = true
}) })
hl.workspace_rule({ hl.workspace_rule({
workspace = "302", workspace = "32",
monitor = "desc:LG Electronics LG ULTRAFINE 503NTKF3L437", monitor = "desc:LG Electronics LG ULTRAFINE 503NTKF3L437",
default = false, default = false,
persistent = true
}) })
--# Workspaces on Monitor 4 --# Workspaces on Monitor 4
hl.workspace_rule({ hl.workspace_rule({
workspace = "4", workspace = "4",
monitor = "desc:LG Electronics LG ULTRAGEAR 107MAKR2RE65", monitor = "desc:LG Electronics LG ULTRAGEAR 107MAKR2RE65",
default = true, default = true,
persistent = true
}) })
hl.workspace_rule({ hl.workspace_rule({
workspace = "400", workspace = "40",
monitor = "desc:LG Electronics LG ULTRAGEAR 107MAKR2RE65", monitor = "desc:LG Electronics LG ULTRAGEAR 107MAKR2RE65",
default = false, default = false,
persistent = true
}) })
hl.workspace_rule({ hl.workspace_rule({
workspace = "401", workspace = "41",
monitor = "desc:LG Electronics LG ULTRAGEAR 107MAKR2RE65", monitor = "desc:LG Electronics LG ULTRAGEAR 107MAKR2RE65",
default = false, default = false,
persistent = true
}) })
end end