Add google meet pip

This commit is contained in:
Ryan Hughes
2026-05-22 16:16:57 -04:00
parent 877bef80d0
commit 1e2a3156a9
+12
View File
@@ -10,3 +10,15 @@ o.window({ tag = "pip" }, {
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)" },
})