diff options
author | Excitable Snowball <excitablesnowball@gmail.com> | 2020-04-30 03:14:58 -0700 |
---|---|---|
committer | Excitable Snowball <excitablesnowball@gmail.com> | 2020-04-30 03:14:58 -0700 |
commit | 4a6cc0053a491c25c4a3da690d7f4aaa098eb99d (patch) | |
tree | d186863b040647a8c934f0b9b839afca6b65eac4 /zoom-firejail | |
parent | a299fca254bbc0d92527d973b26a77043f633254 (diff) |
0.1.3 - workaround for firefox handlers.json
If you select an application other than the default for a schema
handler, Firefox adds it to its handlers.json. Unfortunately, it seems
to only take the first token in the Exec line of the .desktop file. The
previous version used `Exec=/usr/bin/firejail zoom %U`, so this resulted
in Firefox adding `/usr/bin/firejail` instead of `/usr/bin/firejail
zoom` to its handlers.json.
This workaround adds a simple wrapper script /usr/bin/zoom-firejail.
Diffstat (limited to 'zoom-firejail')
-rwxr-xr-x | zoom-firejail | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/zoom-firejail b/zoom-firejail new file mode 100755 index 0000000..46c3390 --- /dev/null +++ b/zoom-firejail @@ -0,0 +1,2 @@ +#!/bin/sh +/usr/bin/firejail -- zoom "$@" |