mirror of
https://github.com/netblue30/firejail.git
synced 2026-05-15 14:16:14 -06:00
[GH-ISSUE #6047] keepassxc: tray icon does not appear (KDE/Plasma Wayland) #3167
Labels
No labels
LTS merge
LTS merge
bug
bug
converted-to-discussion
doc-todo
documentation
duplicate
enhancement
file-transfer
firecfg
firejail-in-firejail
firetools
graphics
help wanted
information_old
installation
invalid
modif
moved
needinfo
networking
notabug
notourbug
old-version
overlayfs
packaging
profile-request
pull-request
question
question_old
removal
runtime-permissions
sandbox-ipc
security
stale
wiki
wiki
wontfix
wordpress
workaround
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: github-starred/firejail#3167
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @variasdesign on GitHub (Oct 10, 2023).
Original GitHub issue: https://github.com/netblue30/firejail/issues/6047
Description
When running KeepassXC inside firejail, tray icon disappears
Steps to Reproduce
LC_ALL=C firejail keepassxc(LC_ALL=Cto get a consistentoutput in English that can be understood by everybody)
Expected behavior
Tray icon appears
Actual behavior
Tray icon doesn't appear
Behavior without a profile
Tray icon appears
Environment
Checklist
/usr/bin/vlc) "fixes" it).https://github.com/netblue30/firejail/issues/1139)browser-allow-drm yes/browser-disable-u2f noinfirejail.configto allow DRM/U2F in browsers.--profile=PROFILENAMEto set the right profile. (Only relevant for AppImages)Log
Output of
LC_ALL=C firejail /path/to/programOutput of
LC_ALL=C firejail --debug /path/to/programSecret gist
@ghost commented on GitHub (Oct 10, 2023):
The keepassxc profile uses a conditional
?ALLOW_TRAYto add the necessary dbus-user filter rules:84ade11cbe/etc/profile-a-l/keepassxc.profile (L103-L104)By default support for this conditional is disabled in /etc/firejail/firejail.config:
84ade11cbe/etc/firejail.config (L5-L7)So you have 2 options here. Either change that default (will enable tray support for all apps that have it in their profile) OR add the same 2 filter rules
withoutthe conditional in a keepassxc.local. Use whatever supports your use cases/workflow.@variasdesign commented on GitHub (Oct 10, 2023):
I see. Thanks for your promptness in replying and giving me a solution.