feat(profile): add xfce-terminal.

This commit is contained in:
Alexandre Pujol 2024-04-05 23:32:54 +01:00
parent f4a66a3b8e
commit 257c872395
No known key found for this signature in database
GPG Key ID: C5469996F0DF68EC

View File

@ -0,0 +1,45 @@
# apparmor.d - Full set of apparmor profiles
# Copyright (C) 2024 Alexandre Pujol <alexandre@pujol.io>
# SPDX-License-Identifier: GPL-2.0-only
abi <abi/3.0>,
include <tunables/global>
@{exec_path} = @{bin}/xfce4-terminal
profile xfce-terminal @{exec_path} {
include <abstractions/base>
include <abstractions/consoles>
include <abstractions/dconf-write>
include <abstractions/nameservice-strict>
include <abstractions/xfce>
@{exec_path} mr,
# The shell is not confined on purpose.
@{bin}/@{shells} rUx,
# Some CLI program can be launched directly from Gnome Shell
@{bin}/htop rPx,
@{bin}/micro rPUx,
@{bin}/nvtop rPx,
/usr/share/ r,
/usr/share/xfce4/ r,
/usr/share/xfce4/terminal/{,**} r,
/etc/fstab r,
/etc/xdg/ r,
/etc/xdg/xfce4/ r,
owner @{user_config_dirs}/xfce4/terminal/{,**} r,
owner /tmp/user/@{uid}/#@{int} rw,
@{PROC}/@{pid}/cgroup r,
owner @{PROC}/@{pid}/mountinfo r,
/dev/ptmx rw,
include if exists <local/xfce-terminal>
}