Add vim modeline instructing the editor to use syntax plugin provided by apparmor. Continuation of #394 to keep the diff list relatively short.
27 lines
637 B
Text
27 lines
637 B
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2023-2024 Alexandre Pujol <alexandre@pujol.io>
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/3.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = @{bin}/kwin_wayland_wrapper
|
|
profile kwin_wayland_wrapper @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/wayland>
|
|
include <abstractions/X-strict>
|
|
|
|
signal (send) set=(term, kill) peer=kwin_wayland,
|
|
|
|
@{exec_path} mr,
|
|
|
|
@{bin}/kwin_wayland rPx,
|
|
|
|
owner @{run}/user/@{uid}/#@{int} rw,
|
|
owner @{run}/user/@{uid}/xauth_@{rand6} w,
|
|
|
|
include if exists <local/kwin_wayland_wrapper>
|
|
}
|
|
|
|
# vim:syntax=apparmor
|