22 lines
578 B
Text
22 lines
578 B
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2024 Alexandre Pujol <alexandre@pujol.io>
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/4.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = @{lib}/kscreen_osd_service
|
|
@{exec_path} += @{lib}/@{multiarch}/{,libexec/}kscreen_osd_service
|
|
profile kscreen_osd_service @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/graphics>
|
|
include <abstractions/kde-strict>
|
|
include <abstractions/nameservice-strict>
|
|
|
|
@{exec_path} mr,
|
|
|
|
include if exists <local/kscreen_osd_service>
|
|
}
|
|
|
|
# vim:syntax=apparmor
|