-
-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add more lxqt files #600
base: main
Are you sure you want to change the base?
add more lxqt files #600
Conversation
first file for the LXQT 2.0 desktop group
starter file for LXQT Desktop
I use sddm as display manager I cant remove the other file - only use graphical env., sorry After startlxqt i would add 2 lines to sddm to enable the start of LXQT desktop
Enable sddm to start an lxqt desktop session
lxqt-session to be started by startlxqt. Display manager: sddm
is needed for several complaints: DENIED kscreen_backend_launcher open owner @{user_config_dirs}/lxqt/lxqt.conf comm=kscreen_backend requested_mask=r denied_mask=r DENIED kscreen_backend_launcher open /usr/share/lxqt/lxqt.conf comm=kscreen_backend requested_mask=r denied_mask=r DENIED kscreen_backend_launcher open owner @{user_config_dirs}/lxqt/session.conf comm=kscreen_backend requested_mask=r denied_mask=r DENIED kscreen_backend_launcher open /usr/share/lxqt/session.conf comm=kscreen_backend requested_mask=r denied_mask=r
add child-open
you think its too permissive to have app-launcher-user here, right?
add needed programs
turning back to layout of corresponding xfce file.
apparmor.d/groups/lxqt/lxqt-about
Outdated
|
||
@{exec_path} mr, | ||
|
||
/usr/share/icons/{,**} r, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is included in lxqt
apparmor.d/groups/lxqt/lxqt-about
Outdated
profile lxqt-about @{exec_path} { | ||
include <abstractions/base> | ||
include <abstractions/lxqt> | ||
include <abstractions/video> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it really needed? This abstraction is usually useful for media player, it is less common in classic UI app. Maybe you need something else here.
include <abstractions/lxqt> | ||
include <abstractions/nameservice-strict> | ||
include <abstractions/qt5-shader-cache> | ||
include <abstractions/gvfs-open> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Don't use gvfs-open
directly. You need someting like: @{open_path} rPx -> child-open,
here.
Most basic UI app can open external resource to show the help page. Therefore you need something like the following in most of these profiles:
Have a look at the xfce app as example. |
@{bin}/screengrab rpx, | ||
@{bin}/lxqt-config-brightness rpx, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
rPx
instead of rpx
(unless it is intentional)
No description provided.