29 lines
829 B
Text
29 lines
829 B
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2023-2024 Alexandre Pujol <alexandre@pujol.io>
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/4.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = @{lib}/kf{5,6}/kscreen_backend_launcher
|
|
@{exec_path} += @{lib}/@{multiarch}/{,libexec/}kf{5,6}/kscreen_backend_launcher
|
|
profile kscreen_backend_launcher @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/bus-accessibility>
|
|
include <abstractions/bus-session>
|
|
include <abstractions/bus/org.a11y>
|
|
include <abstractions/kde-strict>
|
|
include <abstractions/lxqt>
|
|
|
|
#aa:dbus own bus=session name=org.kde.KScreen
|
|
#aa:dbus talk bus=system name=org.kde.kf5auth path=/ label=kde-powerdevil
|
|
|
|
@{exec_path} mr,
|
|
|
|
/dev/tty r,
|
|
|
|
include if exists <local/kscreen_backend_launcher>
|
|
}
|
|
|
|
# vim:syntax=apparmor
|