mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-02 12:47:49 +02:00
25 lines
700 B
Lua
25 lines
700 B
Lua
-- Picture-in-picture overlays.
|
|
o.window({ title = "(Picture.?in.?[Pp]icture)" }, { tag = "+pip" })
|
|
o.window({ tag = "pip" }, {
|
|
tag = "-default-opacity",
|
|
float = true,
|
|
pin = true,
|
|
size = { 600, 338 },
|
|
keep_aspect_ratio = true,
|
|
border_size = 0,
|
|
opacity = "1 1",
|
|
move = { "(monitor_w-window_w-40)", "(monitor_h*0.04)" },
|
|
})
|
|
|
|
-- Google Meet PiP uses the meeting title instead of "Picture-in-Picture".
|
|
o.window({ tag = "chromium-based-browser", title = "^Meet - .+" }, {
|
|
tag = "-default-opacity",
|
|
float = true,
|
|
pin = true,
|
|
size = { 600, 338 },
|
|
keep_aspect_ratio = true,
|
|
border_size = 0,
|
|
opacity = "1 1",
|
|
move = { "(monitor_w-window_w-40)", "(monitor_h-window_h-40)" },
|
|
})
|