Move vim syntax comment to the end of the file, separated by newline, as requested in #380.
31 lines
672 B
Text
31 lines
672 B
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2024 valoq <valoq@mailbox.org>
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/3.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = @{bin}/imv-wayland
|
|
profile imv @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/desktop>
|
|
include <abstractions/fontconfig-cache-read>
|
|
include <abstractions/graphics>
|
|
include <abstractions/nameservice-strict>
|
|
include <abstractions/user-read-strict>
|
|
|
|
@{exec_path} mr,
|
|
|
|
/etc/imv_config r,
|
|
|
|
/tmp/ r,
|
|
|
|
owner @{user_config_dirs}/imv/config r,
|
|
|
|
owner @{run}/user/@{uid}/imv-*.sock w,
|
|
|
|
include if exists <local/imv-wayland>
|
|
}
|
|
|
|
# vim:syntax=apparmor
|