mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-06 04:29:34 +02:00
7 lines
451 B
Lua
7 lines
451 B
Lua
-- Webcam overlay for screen recording.
|
|
hl.window_rule({ match = { title = "WebcamOverlay" }, float = true })
|
|
hl.window_rule({ match = { title = "WebcamOverlay" }, pin = true })
|
|
hl.window_rule({ match = { title = "WebcamOverlay" }, no_initial_focus = true })
|
|
hl.window_rule({ match = { title = "WebcamOverlay" }, no_dim = true })
|
|
hl.window_rule({ match = { title = "WebcamOverlay" }, move = { "(monitor_w-window_w-40)", "(monitor_h-window_h-40)" } })
|