27 lines
692 B
Text
27 lines
692 B
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2021 Mikhail Morfikov
|
|
# 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} = @{bin}/mediainfo-gui
|
|
profile mediainfo-gui @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/dconf-write>
|
|
include <abstractions/fontconfig-cache-read>
|
|
include <abstractions/fonts>
|
|
include <abstractions/freedesktop.org>
|
|
include <abstractions/gtk>
|
|
include <abstractions/user-read-strict>
|
|
|
|
@{exec_path} mr,
|
|
|
|
@{open_path} rPx -> child-open-browsers,
|
|
|
|
include if exists <local/mediainfo-gui>
|
|
}
|
|
|
|
# vim:syntax=apparmor
|