31 lines
928 B
Text
31 lines
928 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} = @{bin}/gnome-clocks
|
|
profile gnome-clocks @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/audio-client>
|
|
include <abstractions/bus-system>
|
|
include <abstractions/bus/org.freedesktop.portal.Desktop>
|
|
include <abstractions/bus/org.gtk.vfs.MountTracker>
|
|
include <abstractions/common/gnome>
|
|
include <abstractions/gstreamer>
|
|
include <abstractions/nameservice-strict>
|
|
|
|
network netlink raw,
|
|
|
|
#aa:dbus own bus=session name=org.gnome.clocks interface+=org.gtk.Actions
|
|
#aa:dbus own bus=session name=org.gnome.clocks.SearchProvider interface+=org.gnome.Shell.SearchProvider2
|
|
|
|
@{exec_path} mr,
|
|
@{open_path} rPx -> child-open-help,
|
|
|
|
include if exists <local/gnome-clocks>
|
|
}
|
|
|
|
# vim:syntax=apparmor
|