27 lines
701 B
Text
27 lines
701 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}/localsend
|
|
profile localsend @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/bus-session>
|
|
include <abstractions/bus-system>
|
|
include <abstractions/desktop>
|
|
include <abstractions/graphics>
|
|
include <abstractions/user-download-strict>
|
|
|
|
# --system-talk-name=org.freedesktop.NetworkManager
|
|
# - --system-talk-name=org.freedesktop.hostname1
|
|
# --talk-name=org.kde.StatusNotifierWatcher
|
|
|
|
@{exec_path} mr,
|
|
|
|
include if exists <local/localsend>
|
|
}
|
|
|
|
# vim:syntax=apparmor
|