mirror of
https://github.com/netblue30/firejail.git
synced 2026-05-21 06:45:29 -06:00
Main changes:
* Remove the space after `#` for commented code lines to distinguish
them from normal comments
* Use `#` instead of `-` for comments at the end of the line so that
commented code lines work after being uncommented
Commands used to search and replace:
arg0="$(cat contrib/syntax/lists/profile_commands_arg0.list |
LC_ALL=C sort -u | tr '\n' '|' | sed -e 's/|$//' -e 's/\./\\./g')"
arg1="$(cat contrib/syntax/lists/profile_commands_arg1.list |
LC_ALL=C sort -u | tr '\n' '|' | sed -e 's/|$//' -e 's/\./\\./g')"
git ls-files -z -- etc/inc etc/profile* | xargs -0 -I '{}' \
sh -c "printf '%s\n' \"\$(sed -E \
-e 's/^# ($arg0)( [#-]-? .*)?\$/#\\1\\2/' \
-e 's/^# ($arg1)( [^ ]*)?( [#-]-? .*)?\$/#\\1\\2\\3/' \
-e 's/^# (whitelist \\$)/#\\1/' \
-e 's/^(#[^ ].+) --? /\\1 # /' \
'{}')\" >'{}'"
Commands used to check for leftover entries:
arg0="$(cat contrib/syntax/lists/profile_commands_arg0.list |
LC_ALL=C sort -u | tr '\n' '|' | sed -e 's/|$//' -e 's/\./\\./g')"
arg1="$(cat contrib/syntax/lists/profile_commands_arg1.list |
LC_ALL=C sort -u | tr '\n' '|' | sed -e 's/|$//' -e 's/\./\\./g')"
git grep -E "^# ($arg0|$arg1)( +|$)" -- etc/inc etc/profile*
See also commit 30f9ad908 ("build: improve comments in firecfg.config",
2023-08-05) / PR #5942.
33 lines
924 B
Text
33 lines
924 B
Text
# Firejail profile for atom
|
|
# Description: A hackable text editor for the 21st Century
|
|
# This file is overwritten after every install/update
|
|
# Persistent local customizations
|
|
include atom.local
|
|
# Persistent global definitions
|
|
include globals.local
|
|
|
|
# Disabled until someone reported positive feedback
|
|
ignore include disable-devel.inc
|
|
ignore include disable-interpreters.inc
|
|
ignore include disable-xdg.inc
|
|
ignore whitelist ${DOWNLOADS}
|
|
ignore whitelist ${HOME}/.config/Electron
|
|
ignore whitelist ${HOME}/.config/electron*-flag*.conf
|
|
ignore include whitelist-common.inc
|
|
ignore include whitelist-runuser-common.inc
|
|
ignore include whitelist-usr-share-common.inc
|
|
ignore include whitelist-var-common.inc
|
|
ignore apparmor
|
|
ignore disable-mnt
|
|
|
|
noblacklist ${HOME}/.atom
|
|
noblacklist ${HOME}/.config/Atom
|
|
|
|
# Allows files commonly used by IDEs
|
|
include allow-common-devel.inc
|
|
|
|
#net none
|
|
nosound
|
|
|
|
# Redirect
|
|
include electron-common.profile
|