23 lines
514 B
Text
23 lines
514 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/4.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = @{bin}/swayimg
|
|
profile swayimg @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/desktop>
|
|
include <abstractions/fontconfig-cache-read>
|
|
include <abstractions/user-read-strict>
|
|
|
|
@{exec_path} mr,
|
|
|
|
owner @{user_config_dirs}/swayimg/** r,
|
|
|
|
include if exists <local/swayimg>
|
|
}
|
|
|
|
# vim:syntax=apparmor
|