28 lines
582 B
Text
28 lines
582 B
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2024 Alexandre Pujol <alexandre@pujol.io>
|
|
# Copyright (C) 2024 Besanon <m231009ts@mailfence.com>
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/4.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = @{bin}/lxqt-about
|
|
profile lxqt-about @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/lxqt>
|
|
|
|
@{exec_path} mr,
|
|
|
|
/usr/share/desktop-directories/{,**} r,
|
|
|
|
/etc/xdg/menus/lxqt-applications.menu r,
|
|
|
|
owner /tmp/@{int} r,
|
|
|
|
/dev/tty rw,
|
|
|
|
include if exists <local/lxqt-about>
|
|
}
|
|
|
|
# vim:syntax=apparmor
|