feat(tunable): add editor_ui variables.
This commit is contained in:
parent
99df9cec51
commit
c391bdefc1
3 changed files with 32 additions and 2 deletions
28
apparmor.d/groups/children/child-open-editor
Normal file
28
apparmor.d/groups/children/child-open-editor
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
# apparmor.d - Full set of apparmor profiles
|
||||
# Copyright (C) 2024 Alexandre Pujol <alexandre@pujol.io>
|
||||
# SPDX-License-Identifier: GPL-2.0-only
|
||||
|
||||
# This profile is designed to be used in a child profile to limit what
|
||||
# confined application can invoke via open helper.
|
||||
|
||||
# This version of child-open only allow to open text editor.
|
||||
|
||||
# Note: This profile does not specify an attachment path because it is
|
||||
# intended to be used only via "Px -> child-open-browsers" exec transitions
|
||||
# from other profiles.
|
||||
|
||||
abi <abi/4.0>,
|
||||
|
||||
include <tunables/global>
|
||||
|
||||
profile child-open-editor flags=(attach_disconnected,mediate_deleted) {
|
||||
include <abstractions/base>
|
||||
include <abstractions/app/open>
|
||||
|
||||
@{editor_ui_path} PUx,
|
||||
|
||||
include if exists <usr/child-open-editor.d>
|
||||
include if exists <local/child-open-editor>
|
||||
}
|
||||
|
||||
# vim:syntax=apparmor
|
||||
|
|
@ -38,8 +38,9 @@
|
|||
@{open_path} += @{lib}/gio-launch-desktop
|
||||
@{open_path} += @{lib}/@{multiarch}/glib-@{version}/gio-launch-desktop
|
||||
|
||||
# Editor
|
||||
# Editors
|
||||
@{editor_path} = @{bin}/@{editor_names}
|
||||
@{editor_ui_path} = @{bin}/@{editor_ui_names}
|
||||
|
||||
# Pager
|
||||
@{pager_path} = @{bin}/@{pager_names}
|
||||
|
|
|
|||
|
|
@ -32,8 +32,9 @@
|
|||
# Open
|
||||
@{open_names} = exo-open xdg-open gio kde-open gio-launch-desktop
|
||||
|
||||
# Editor
|
||||
# Editors
|
||||
@{editor_names} = sensible-editor vim{,.*} vimtutor vim-nox11 nvim nano
|
||||
@{editor_ui_names} = gnome-text-editor gedit mousepad
|
||||
|
||||
# Pager
|
||||
@{pager_names} = sensible-pager pager less more nvimpager
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue