Package Details: zoom-firejail 0.1.7-1

Git Clone URL: https://aur.archlinux.org/zoom-firejail.git (read-only, click to copy)
Package Base: zoom-firejail
Description: .desktop file for running Zoom in Firejail
Upstream URL: None
Licenses: MIT
Submitter: snowball
Maintainer: flylightning
Last Packager: snowball
Votes: 12
Popularity: 0.005027
First Submitted: 2020-04-30 09:27 (UTC)
Last Updated: 2023-01-28 08:49 (UTC)

Latest Comments

« First ‹ Previous 1 2 3

snowball commented on 2020-05-27 04:43 (UTC)

@iltep64 Thanks for figuring this out! I added your --shell=none workaround in zoom-firejail 0.1.5.

iltep64 commented on 2020-05-26 17:49 (UTC)

@snowball @hockdudu I've encountered the same issue, while using fish. Another workaround in the script is to set the $SHELL environment variable to /bin/bash, or provide either the --shell=none or --shell=/bin/bash flag to firejail (before the -- arg separator).

It seems like an upstream bug with Firejail, as the documentation does say it defaults to bash, but the code behavior looks different. I filed a bug report.

async commented on 2020-05-12 15:42 (UTC) (edited on 2020-05-12 15:45 (UTC) by async)

actually, maybe not. it seems like it has more to do with Firejail and how it interacts with Zoom (the calendar link opens a second firejail version, I think), rather than the legacy zoom client still running. I think this error might just be something I have to deal with.

async commented on 2020-05-12 15:32 (UTC)

It works! Thank you so much snowball!

It does seem like there may still be one issue. Even after rebooting, each time I click an an xdg-open link in Chromium or Brave, the zoom-firejail client says that I'm currently signed in on another device. I don't see two copies of Zoom running in the gnome system tray, and I definitely never started the regular zoom client. I think somehow it is still running in the background though after restarting?

snowball commented on 2020-05-12 02:29 (UTC)

@asynec It depends what program you're opening the invite links from. Firefox will prompt you by default. Chromium will use xdg-open. I don't know about other programs. Here's how to check what xdg-open is currently configured to use for all the schemes that Zoom recognizes:

xdg-mime query default x-scheme-handler/zoommtg
xdg-mime query default x-scheme-handler/zoomus
xdg-mime query default x-scheme-handler/tel
xdg-mime query default x-scheme-handler/callto
xdg-mime query default x-scheme-handler/zoomphonecall

If you would like to change them all to open under Firejail, here's how:

xdg-mime default ZoomFirejail.desktop x-scheme-handler/zoommtg
xdg-mime default ZoomFirejail.desktop x-scheme-handler/zoomus
xdg-mime default ZoomFirejail.desktop x-scheme-handler/tel
xdg-mime default ZoomFirejail.desktop x-scheme-handler/callto
xdg-mime default ZoomFirejail.desktop x-scheme-handler/zoomphonecall

Please let me know if that resolves your issue. If it does, I'll add a post-install script to print out additional instructions.

async commented on 2020-05-11 18:30 (UTC) (edited on 2020-05-11 18:30 (UTC) by async)

How can I associate Zoom links with Zoom-Firejail instead of the regular Zoom? By default, my cal invites are still opening in the unsafe version of Zoom.

snowball commented on 2020-05-06 15:57 (UTC)

@hockdudu I'm unable to reproduce the issue under fish. What is /bin/sh symlinked to on your system?

hockdudu commented on 2020-05-06 12:43 (UTC) (edited on 2020-05-06 12:44 (UTC) by hockdudu)

I use fish as my shell and I got this error:

fish: Unknown command: --
fish:
--
^

Replacing this line in zoom-firejail solved my problem.

-/usr/bin/firejail -- zoom "$@"
+/usr/bin/firejail zoom "$@"