diff options
| author | Alex <alex.corcoles@veecle.io> | 2026-05-17 19:38:04 +0200 |
|---|---|---|
| committer | alex <alex@pdp7.net> | 2026-05-17 17:38:43 +0000 |
| commit | 9fe37104e9c8d6409cefab69280f87330d69f553 (patch) | |
| tree | bfc0000abad945368c3c8d7d374b3dc53966ded7 /scripts/p7s/google_meet.py | |
| parent | 93105749f2a19c6dfb7ad8c1c2cf0fe6833086f6 (diff) | |
Add google-meet-toggle-mutemaster
Diffstat (limited to 'scripts/p7s/google_meet.py')
| -rw-r--r-- | scripts/p7s/google_meet.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/p7s/google_meet.py b/scripts/p7s/google_meet.py new file mode 100644 index 00000000..91c27728 --- /dev/null +++ b/scripts/p7s/google_meet.py @@ -0,0 +1,12 @@ +import subprocess + +# Needs the https://github.com/ChrisRegado/streamdeck-googlemeet/releases/latest browser extension and websocat + +def toggle_mute(): + subprocess.run([ + "websocat", + "--text", + "--oneshot", + 'literal:{"event":"toggleMic"}', + "ws-listen:127.0.0.1:2394" + ], check=True) |
