aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorohfp <1813007-ohfp@users.noreply.gitlab.com>2020-03-30 21:18:30 +0200
committerohfp <1813007-ohfp@users.noreply.gitlab.com>2020-03-30 21:18:30 +0200
commitb50b503e853101d95a6e8b2065e221c76a11d5dd (patch)
treeceba070f1547e390dc6ab24d9068271562e58920
parentuse same file naming scheme everywhere (diff)
downloadlibrewolf-linux-b50b503e853101d95a6e8b2065e221c76a11d5dd.tar.gz
librewolf-linux-b50b503e853101d95a6e8b2065e221c76a11d5dd.tar.bz2
librewolf-linux-b50b503e853101d95a6e8b2065e221c76a11d5dd.zip
extend flatpak json with permissions and dbus-glib shared module
-rw-r--r--.gitmodules3
-rw-r--r--flatpak/content/io.gitlab.LibreWolf.json11
m---------flatpak/content/shared-submodules0
3 files changed, 14 insertions, 0 deletions
diff --git a/.gitmodules b/.gitmodules
new file mode 100644
index 0000000..7e4e711
--- /dev/null
+++ b/.gitmodules
@@ -0,0 +1,3 @@
+[submodule "flatpak/content/shared-submodules"]
+ path = flatpak/content/shared-submodules
+ url = https://github.com/flathub/shared-modules.git
diff --git a/flatpak/content/io.gitlab.LibreWolf.json b/flatpak/content/io.gitlab.LibreWolf.json
index 090d4bc..984053c 100644
--- a/flatpak/content/io.gitlab.LibreWolf.json
+++ b/flatpak/content/io.gitlab.LibreWolf.json
@@ -5,6 +5,7 @@
"sdk": "org.gnome.Sdk",
"command": "librewolf",
"modules": [
+ "shared-modules/gtk2/gtk2.json",
{
"name": "librewolf",
"buildsystem": "simple",
@@ -23,6 +24,16 @@
"finish-args": [
"--share=ipc",
"--socket=x11",
+ "--socket=pulseaudio",
+ "--persist=.librewolf",
+ "--filesystem=xdg-download:rw",
+ "--device=all",
+ "--talk-name=org.freedesktop.FileManager1",
+ "--system-talk-name=org.freedesktop.NetworkManager",
+ "--talk-name=org.a11y.Bus",
+ "--talk-name=org.gnome.SessionManager",
+ "--talk-name=org.freedesktop.ScreenSaver",
+ "--talk-name=\"org.gtk.vfs.*\"",
"--socket=wayland",
"--filesystem=home:rw",
"--share=network"
diff --git a/flatpak/content/shared-submodules b/flatpak/content/shared-submodules
new file mode 160000
+Subproject 8ce6437c269ef28c49984c11246d27be433c21d
bgstack15