16 lines
407 B
Lua
16 lines
407 B
Lua
-- Set the workspace for certain apps
|
|
hl.window_rule({
|
|
match = { class = ".*steam_app.*", title = "ALVR.*|^hidden-terminator" },
|
|
workspace = 1,
|
|
})
|
|
|
|
hl.window_rule({
|
|
match = { class = "evince|okular|org\\.pwmt\\.zathura|librewolf", title = "BSManager|Beat Saber.*" },
|
|
workspace = 2,
|
|
})
|
|
|
|
hl.window_rule({
|
|
match = { class = "minecraft-launcher", title = ".*Minecraft.*|.*[Ss]team.*" },
|
|
workspace = 3,
|
|
})
|