From 1e2a3156a91d86049116f3282fb9a4df23d662f1 Mon Sep 17 00:00:00 2001 From: Ryan Hughes Date: Fri, 22 May 2026 16:16:57 -0400 Subject: [PATCH] Add google meet pip --- default/hypr/apps/pip.lua | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/default/hypr/apps/pip.lua b/default/hypr/apps/pip.lua index d7d4e12f..791152da 100644 --- a/default/hypr/apps/pip.lua +++ b/default/hypr/apps/pip.lua @@ -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)" }, +})