firejail/etc/profile-a-l
Kelvin M. Klann f43382f1e9 Revert "move whitelist/blacklist to allow/deny"
This reverts commit fe0f975f44.

Note: This only reverts the changes from etc.

The 4 aliases introduced on commit 45f2ba544 are mere, well, aliases.
That is, they fail to address the different usability problems discussed
on [#3447][3447] and in fact only make things more confusing (as has
already been mentioned on [this][4379] and later comments).  The main
reason is that the aliases do not meaningfully map to the original
commands.  For example, the commands from each pair below seem like they
would do the exact same thing:

* `allow` and `nodeny`
* `deny` and `noallow`

Additionally, if these aliases are not the final commands, but only a
test/work-in-progress, then keeping the wide-scale search/replace
changes made on commit fe0f975f4 would only serve to cause confusion, as
users of firejail-git, contributors and downstream projects might start
changing the commands used on their profiles, only to later have to
change them again, potentially to completely different commands.

The sooner this is undone the better, as (besides the above reasons) the
more profile changes there are between the original commit and the
revert, the harder it is to e.g.: `git diff` versions of files across
the following revision ranges: before the commit, after the commit but
before the revert and after the revert.  Note: This is still the case
even if a commit is [ignored by `git blame`][4390].

So let us revert fe0f975f4 and only reapply similar large-scale changes
once we have discussed and settled on better commands.

How the revert was applied: Despite using the auto-generated message
from `git revert`, to ensure correctness and to avoid conflicts the
changes were reverted in different steps: Firstly, revert the files
which can be safely reverted directly ("filestorevert"):

    # Find out which files have been changed on fe0f975f44, but have not
    # been changed afterwards and list them on "filestorevert"
    git show --pretty='' --name-only fe0f975f44 -- etc | LC_ALL=C sort >allfiles
    git diff --name-only fe0f975f44..master -- etc | LC_ALL=C sort >filestoignore
    comm -2 -3 allfiles filestoignore >filestorevert

    # Note: There are 3 extra files on filestoignore because they were
    # added after commit fe0f975f44
    wc -l allfiles filestoignore filestorevert | head -n 3
    #   797 allfiles
    #     8 filestoignore
    #   792 filestorevert

    # Automatically revert files in "filestorevert"
    # See https://stackoverflow.com/a/23401018/10095231
    tr '\n' '\000' <filestorevert | xargs -0 git show fe0f975f44 -- |
    git apply --reverse

    printf 'Total files reverted:\n'
    git diff --name-only | wc -l
    # 792

Secondly, do some search/replace on the rest:

    tr '\n' '\000' <filestoignore | xargs -0 sed -i.bak \
      -e 's/allow  /whitelist /' -e 's/noallow  /nowhitelist /' \
      -e 's/deny  /blacklist /' -e 's/nodeny  /noblacklist /' \
      -e 's/deny-nolog  /blacklist-nolog /'

    find etc -name '*.bak' -print0 | xargs -0 rm

Thirdly, verify the result.  The following command shows the difference
between all the changes in etc from before fe0f975f44 and this commit
(inclusive):

    git diff fe0f975f44~1 -- etc

From the output, it looks like all alias changes are fully reverted and
that the other changes to etc (from after fe0f975f44) remain, so the
revert seems to be done correctly.

[3447]: https://github.com/netblue30/firejail/issues/3447
[4379]: https://github.com/netblue30/firejail/issues/4379#issuecomment-876460222
[4390]: https://github.com/netblue30/firejail/issues/4390
2021-07-18 20:39:14 -03:00
..
0ad.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
7z.profile rename archiver-common.inc 2021-03-02 09:17:34 +00:00
7za.profile
7zr.profile
2048-qt.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
abiword.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
abrowser.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
acat.profile
adiff.profile
agetpkg.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
akonadi_control.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
akregator.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
alacarte.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
alienarena-wrapper.profile Commons of opengl-game-wrapper.sh 2021-04-24 09:44:34 +02:00
alienarena.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
alpine.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
alpinef.profile creating alpine.profile (#4350) 2021-06-21 12:25:19 +00:00
als.profile
amarok.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
amule.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
amuled.profile
android-studio.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
anki.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
anydesk.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
aosp.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
apack.profile
apktool.profile Add noinput to all profiles with private-dev 2021-05-05 06:03:18 +00:00
apostrophe.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
ar.profile rename archiver-common.inc 2021-03-02 09:19:05 +00:00
arch-audit.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
archaudit-report.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
archiver-common.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
ardour4.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
ardour5.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
arduino.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
arepack.profile
aria2c.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
ark.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
arm.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
artha.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
assogiate.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
asunder.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
atom-beta.profile
atom.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
atool.profile rename archiver-common.inc 2021-03-02 09:20:17 +00:00
atril-previewer.profile
atril-thumbnailer.profile
atril.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
audacious.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
audacity.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
audio-recorder.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
aunpack.profile
authenticator-rs.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
authenticator.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
autokey-common.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
autokey-gtk.profile
autokey-qt.profile
autokey-run.profile
autokey-shell.profile
avidemux.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
aweather.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
awesome.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
b2sum.profile Add profile for checksum tools 2021-03-14 21:26:37 +01:00
ballbuster-wrapper.profile Commons of opengl-game-wrapper.sh 2021-04-24 09:44:34 +02:00
ballbuster.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
baloo_file.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
baloo_filemetadata_temp_extractor.profile
balsa.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
baobab.profile Add noinput to all profiles with private-dev 2021-05-05 06:03:18 +00:00
barrier.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
basilisk.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
bcompare.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
beaker.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
bibletime.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
bibtex.profile
bijiben.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
bitcoin-qt.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
bitlbee.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
bitwarden.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
blackbox.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
bleachbit.profile Add noinput to all profiles with private-dev 2021-05-05 06:03:18 +00:00
blender-2.8.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
blender.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
bless.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
blobby.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
blobwars.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
bluefish.profile Add noinput to all profiles with private-dev 2021-05-05 06:03:18 +00:00
bnox.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
Books.profile Fixes (man: allow rustup; Books -> gnome-books) 2021-03-28 14:33:01 +02:00
brackets.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
brasero.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
brave-browser-beta.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
brave-browser-dev.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
brave-browser-nightly.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
brave-browser-stable.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
brave-browser.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
brave.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
bsdcat.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
bsdcpio.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
bsdtar.profile rename archiver-common.inc 2021-03-02 09:21:32 +00:00
Builder.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
bunzip2.profile
bzcat.profile
bzflag.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
bzip2.profile
caja.profile file managers refactoring (#3375) 2020-04-21 20:58:34 +00:00
calibre.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
calligra.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
calligraauthor.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
calligraconverter.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
calligraflow.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
calligragemini.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
calligraplan.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
calligraplanwork.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
calligrasheets.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
calligrastage.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
calligrawords.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
cameramonitor.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
cantata.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
cargo.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
catfish.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
cawbird.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
celluloid.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
checkbashisms.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
Cheese.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
cheese.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
cherrytree.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
chromium-browser-privacy.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
chromium-browser.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
chromium-common-hardened.inc.profile fix comment typo 2021-04-07 21:37:57 +00:00
chromium-common.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
chromium-freeworld.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
chromium.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
cin.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
cinelerra.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
cksum.profile Add profile for checksum tools 2021-03-14 21:26:37 +01:00
clamav.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
clamdscan.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
clamdtop.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
clamscan.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
clamtk.profile Add noinput to all profiles with private-dev 2021-05-05 06:03:18 +00:00
claws-mail.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
clawsker.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
clementine.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
clion-eap.profile Fix clion 2021-07-07 14:37:51 +04:00
clion.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
clipgrab.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
clipit.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
cliqz.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
clocks.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
cmus.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
code-oss.profile
code.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
cola.profile Add profile for twitch,youtube,youtube-music; fix git-cola ,add cola (#3577) 2020-09-03 08:11:05 +00:00
colorful-wrapper.profile Commons of opengl-game-wrapper.sh 2021-04-24 09:44:34 +02:00
colorful.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
com.github.bleakgrey.tootle.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
com.github.dahenson.agenda.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
com.github.johnfactotum.Foliate.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
com.github.phase1geo.minder.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
com.gitlab.newsflash.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
conkeror.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
conky.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
conplay.profile wusc whitelists /usr/share/perl{,5} now 2020-08-25 16:55:12 +02:00
corebird.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
cower.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
coyim.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
cpio.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
crawl-tiles.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
crawl.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
crow.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
Cryptocat.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
cryptocat.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
curl.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
cvlc.profile
Cyberfox.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
cyberfox.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
d-feet.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
darktable.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
dbus-send.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
dconf-editor.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
dconf.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
ddgr.profile creating googler and ddgr profiles (#4333) 2021-06-04 20:24:09 +00:00
ddgtk.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
deadbeef.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
default.profile Harden device access in default.profile 2021-05-14 06:07:13 +00:00
deluge.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
desktopeditors.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
devhelp.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
devilspie.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
devilspie2.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
dex2jar.profile Add noinput to all profiles with private-dev 2021-05-05 06:03:18 +00:00
dia.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
dig.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
digikam.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
dillo.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
dino-im.profile Update dino-im.profile (#3433) 2020-05-24 18:33:31 +00:00
dino.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
discord-canary.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
discord-common.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
Discord.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
discord.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
DiscordCanary.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
display-im6.q16.profile display-im6.q16 2021-02-11 08:04:42 -05:00
display.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
dnox.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
dnscrypt-proxy.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
dnsmasq.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
Documents.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
dolphin-emu.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
dolphin.profile file managers refactoring (#3375) 2020-04-21 20:58:34 +00:00
dooble-qt4.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
dooble.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
dosbox.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
dragon.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
drawio.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
drill.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
dropbox.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
easystroke.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
ebook-convert.profile more calibre profiles 2021-02-22 07:48:24 -05:00
ebook-edit.profile more calibre profiles 2021-02-22 07:48:24 -05:00
ebook-meta.profile more calibre profiles 2021-02-22 07:48:24 -05:00
ebook-polish.profile more calibre profiles 2021-02-22 07:48:24 -05:00
ebook-viewer.profile
electron-mail.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
electron.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
electrum.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
element-desktop.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
elinks.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
emacs.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
email-common.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
empathy.profile
enchant-2.profile
enchant-lsmod-2.profile
enchant-lsmod.profile
enchant.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
engrampa.profile Add noinput to all profiles with private-dev 2021-05-05 06:03:18 +00:00
enox.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
enpass.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
eo-common.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
eog.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
eom.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
ephemeral.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
epiphany.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
equalx.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
et.profile
etr-wrapper.profile Commons of opengl-game-wrapper.sh 2021-04-24 09:44:34 +02:00
etr.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
evince-previewer.profile
evince-thumbnailer.profile
evince.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
evolution.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
exfalso.profile New profile: Quodlibet (#3983) 2021-04-14 16:33:02 +00:00
exiftool.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
falkon.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
fbreader.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
fdns.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
feedreader.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
feh-network.inc.profile Rename chromium-common-hardened and feh-network … 2021-03-21 21:02:36 +01:00
feh.profile Add noinput to all profiles with private-dev 2021-05-05 06:03:18 +00:00
ferdi.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
fetchmail.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
ffmpeg.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
ffmpegthumbnailer.profile
ffplay.profile
ffprobe.profile
file-manager-common.profile Add noinput to all profiles with private-dev 2021-05-05 06:03:18 +00:00
file-roller.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
file.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
filezilla.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
firedragon.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
firefox-beta.profile
firefox-common-addons.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
firefox-common.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
firefox-developer-edition.profile
firefox-esr.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
firefox-nightly.profile
firefox-wayland.profile
firefox-x11.profile
firefox.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
five-or-more.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
flacsplt.profile
flameshot.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
flashpeak-slimjet.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
flowblade.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
fluxbox.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
font-manager.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
fontforge.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
FossaMail.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
fossamail.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
four-in-a-row.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
fractal.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
franz.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
freecad.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
freecadcmd.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
freeciv-gtk3.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
freeciv-mp-gtk3.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
freeciv.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
freecol.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
freemind.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
freeoffice-planmaker.profile rename softmaker-common.inc to softmaker-common.profile (#3825) 2020-12-15 18:56:59 +00:00
freeoffice-presentations.profile rename softmaker-common.inc to softmaker-common.profile (#3825) 2020-12-15 18:56:59 +00:00
freeoffice-textmaker.profile rename softmaker-common.inc to softmaker-common.profile (#3825) 2020-12-15 18:56:59 +00:00
freetube.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
freshclam.profile Add noinput to all profiles with private-dev 2021-05-05 06:03:18 +00:00
Fritzing.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
frogatto.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
frozen-bubble.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
funnyboat.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gajim-history-manager.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
gajim.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
galculator.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gapplication.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gcalccmd.profile
gcloud.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gconf-editor.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gconf-merge-schema.profile
gconf-merge-tree.profile
gconf.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gconfpkg.profile
gconftool-2.profile
geany.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
geary.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gedit.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
geekbench.profile Add noinput to all profiles with private-dev 2021-05-05 06:03:18 +00:00
geeqie.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gfeeds.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gget.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
ghb.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
ghostwriter.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gimp-2.8.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
gimp-2.10.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
gimp.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gist-paste.profile
gist.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
git-cola.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
git.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gitg.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
github-desktop.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
Gitter.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
gitter.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gjs.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gl-117-wrapper.profile Add profiles for alienarena, ballbuster, colorful… 2021-04-24 09:44:34 +02:00
gl-117.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
glaxium-wrapper.profile Add profiles for alienarena, ballbuster, colorful… 2021-04-24 09:44:34 +02:00
glaxium.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
globaltime.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gmpc.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gnome-2048.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gnome-books.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gnome-builder.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gnome-calculator.profile Add noinput to all profiles with private-dev 2021-05-05 06:03:18 +00:00
gnome-calendar.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gnome-character-map.profile
gnome-characters.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gnome-chess.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gnome-clocks.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gnome-contacts.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gnome-documents.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gnome-font-viewer.profile Add noinput to all profiles with private-dev 2021-05-05 06:03:18 +00:00
gnome-hexgl.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gnome-keyring-3.profile
gnome-keyring.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gnome-klotski.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gnome-latex.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gnome-logs.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gnome-mahjongg.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gnome-maps.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gnome-mines.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gnome-mplayer.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gnome-mpv.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
gnome-music.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gnome-nettool.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gnome-nibbles.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gnome-passwordsafe.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gnome-photos.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gnome-pie.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gnome-pomodoro.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gnome-recipes.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gnome-ring.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gnome-robots.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gnome-schedule.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gnome-screenshot.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gnome-sound-recorder.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gnome-sudoku.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gnome-system-log.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gnome-taquin.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gnome-tetravex.profile
gnome-todo.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gnome-twitch.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gnome-weather.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gnome_games-common.profile Add noinput to all profiles with private-dev 2021-05-05 06:03:18 +00:00
gnote.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gnubik.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
godot.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
goobox.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
google-chrome-beta.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
google-chrome-stable.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
google-chrome-unstable.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
google-chrome.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
google-earth-pro.profile Encourage making overrides in *.local files (#4165) 2021-04-06 09:26:30 +00:00
google-earth.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
google-play-music-desktop-player.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
googler-common.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
googler.profile creating googler and ddgr profiles (#4333) 2021-06-04 20:24:09 +00:00
gpa.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gpg-agent.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gpg.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gpg2.profile
gpicview.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gpredict.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gradio.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gramps.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gravity-beams-and-evaporating-stars.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gsettings-data-convert.profile
gsettings-schema-convert.profile
gsettings.profile
gtar.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
gthumb.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gtk-pipe-viewer.profile reorganizing youtube-viewers (#4128) 2021-05-28 11:52:19 +00:00
gtk-straw-viewer.profile reorganizing youtube-viewers (#4128) 2021-05-28 11:52:19 +00:00
gtk-update-icon-cache.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gtk-youtube-viewer.profile reorganizing youtube-viewers (#4128) 2021-05-28 11:52:19 +00:00
gtk2-youtube-viewer.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gtk3-youtube-viewer.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
guayadeque.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gucharmap.profile Add noinput to all profiles with private-dev 2021-05-05 06:03:18 +00:00
gummi.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gunzip.profile [minor] gunzip profile broken (#4317) 2021-05-29 08:49:24 +00:00
guvcview.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gwenview.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
gzexe.profile
gzip.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
handbrake-gtk.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
handbrake.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
hashcat.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
hasher-common.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
hedgewars.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
hexchat.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
highlight.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
hitori.profile new profiles 2020-06-25 15:06:02 +02:00
homebank.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
host.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
hugin.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
hyperrogue.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
i2prouter.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
i3.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
iagno.profile Add noinput to all profiles with private-dev 2021-05-05 06:03:18 +00:00
icecat.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
icedove.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
iceweasel.profile
idea.profile
idea.sh.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
ideaIC.profile
imagej.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
img2txt.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
impressive.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
inkscape.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
inkview.profile
inox.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
ipcalc-ng.profile ipcalc-ng.profile: fix double globals.local include 2021-02-22 18:27:43 -03:00
ipcalc.profile Add noinput to all profiles with private-dev 2021-05-05 06:03:18 +00:00
iridium-browser.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
iridium.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
itch.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
jami-gnome.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
jd-gui.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
JDownloader.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
jdownloader.profile
jerry.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
jitsi-meet-desktop.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
jitsi.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
jumpnbump-menu.profile streamline 'Allow xxx' comments (#3922) 2021-01-27 23:35:12 +00:00
jumpnbump.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
k3b.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
kaffeine.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
kalgebra.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
kalgebramobile.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
karbon.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
kate.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
kazam.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
kcalc.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
kdeinit4.profile Add noinput to all profiles with private-dev 2021-05-05 06:03:18 +00:00
kdenlive.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
kdiff3.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
keepass.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
keepass2.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
keepassx.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
keepassx2.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
keepassxc-cli.profile
keepassxc-proxy.profile
keepassxc.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
kfind.profile Add noinput to all profiles with private-dev 2021-05-05 06:03:18 +00:00
kget.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
kid3-cli.profile
kid3-qt.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
kid3.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
kino.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
kiwix-desktop.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
klatexformula.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
klatexformula_cmdl.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
klavaro.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
kmail.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
kmplayer.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
knotes.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
kodi.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
konversation.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
kopete.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
krita.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
krunner.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
ktorrent.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
ktouch.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
kube.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
kwin_x11.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
kwrite.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
latex-common.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
latex.profile
lbunzip2.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
lbzcat.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
lbzip2.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
leafpad.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
less.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
librecad.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
libreoffice.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
librewolf-nightly.profile Update Librewolf profile and Add Sway profile (#4164) 2021-04-19 20:04:10 +00:00
librewolf.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
liferea.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
lightsoff.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
lincity-ng.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
links-common.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
links.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
links2.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
linphone.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
lmms.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
lobase.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
localc.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
lodraw.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
loffice.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
lofromtemplate.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
Logs.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
loimpress.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
lollypop.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
lomath.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
loweb.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
lowriter.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
lrunzip.profile
lrz.profile
lrzcat.profile
lrzip.profile
lrztar.profile
lrzuntar.profile
lsar.profile add new profiles: lsar & unar (ar redirects) (#3886) 2021-01-13 06:45:50 +00:00
lugaru.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
luminance-hdr.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
lutris.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
lximage-qt.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
lxmusic.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
lynx.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
lyx.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00
lzcat.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
lzcmp.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
lzdiff.profile add quiet to lzdiff/lzmadec (#3932) 2021-01-30 21:36:26 +00:00
lzegrep.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
lzfgrep.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
lzgrep.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
lzip.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
lzless.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
lzma.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
lzmadec.profile add quiet to lzdiff/lzmadec (#3932) 2021-01-30 21:36:26 +00:00
lzmainfo.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
lzmore.profile follow-up fixes for 43aa71f8c6 2021-01-29 04:08:30 +01:00
lzop.profile Create lzop.profile 2021-02-24 02:52:10 +00:00
sway.profile Revert "move whitelist/blacklist to allow/deny" 2021-07-18 20:39:14 -03:00