Replies: 3 comments 1 reply
-
That is a fascinating problem. I haven't experimented with that yet. I presume that flatpacks need to be configured in a certain way in order to have permission to talk to dbus. Maybe you find something useful here: https://docs.flatpak.org/en/latest/sandbox-permissions.html#d-bus-access |
Beta Was this translation helpful? Give feedback.
-
huh... enabling this in flatseal does not fix the issue, it only works from fixing the flatpak manifest which is odd. Problem solved app_id="xyz.toastxc.Kuma"
app_name="Kuma"
profile="release"
bin="gui"
permissions = [
# network
"--share=network",
# display
"--socket=x11",
"--socket=wayland",
"socket=fallback-x11",
# OpenGL
"--device=dri",
# notifications
"--socket=session-bus",
]
[desktopfile]
terminal= false |
Beta Was this translation helpful? Give feedback.
-
I can confirm that your library works with the freedesktop runtime version |
Beta Was this translation helpful? Give feedback.
-
Hi,
After installing various dependancies for Ubuntu notifications started to work (yay), although weirdly they did not come through the default GNOME interface, but that is an issue for another time.
The issue I have is that despite enabling every permission possible on flatseal (Dbus and all) notifications simply don't work.
org.freedesktop.DBus.Error.ServiceUnknown: org.freedesktop.DBus.Error.ServiceUnknown
NOTE: it is possible that this issue is a user error, as there may be more steps needed for flatpak.
Steps to reproduce
Beta Was this translation helpful? Give feedback.
All reactions