mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-02 04:37:49 +02:00
13 lines
867 B
Lua
13 lines
867 B
Lua
-- Browser tags and styling.
|
|
o.window("((google-)?[cC]hrom(e|ium)|[bB]rave-browser|[mM]icrosoft-edge|Vivaldi-stable|helium)", { tag = "+chromium-based-browser" })
|
|
o.window("([fF]irefox|zen|librewolf)", { tag = "+firefox-based-browser" })
|
|
o.window({ tag = "chromium-based-browser" }, { tag = "-default-opacity", tile = true, opacity = "1.0 0.97" })
|
|
o.window({ tag = "firefox-based-browser" }, { tag = "-default-opacity", opacity = "1.0 0.97" })
|
|
|
|
-- Video apps: remove chromium browser tag so they don't get opacity applied.
|
|
o.window("(chrome-youtube.com__-Default|chrome-app.zoom.us__wc_home-Default)", { tag = "-chromium-based-browser" })
|
|
o.window("(chrome-youtube.com__-Default|chrome-app.zoom.us__wc_home-Default)", { tag = "-default-opacity" })
|
|
|
|
-- Hide screen sharing notification windows.
|
|
o.window({ title = ".*is sharing.*" }, { workspace = "special silent" })
|