aboutsummaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@protonmail.com>2023-01-30 08:14:13 -0500
committerLibravatar netblue30 <netblue30@protonmail.com>2023-01-30 08:14:13 -0500
commit5d5f554ab133bb56d22a58000d58e5a957ee37c5 (patch)
tree0d7d01952cfae83af9d5ff6e99198c18a953e87a /src/include
parentMerge pull request #5626 from kmk3/mutt-reduce-mkdir (diff)
downloadfirejail-5d5f554ab133bb56d22a58000d58e5a957ee37c5.tar.gz
firejail-5d5f554ab133bb56d22a58000d58e5a957ee37c5.tar.zst
firejail-5d5f554ab133bb56d22a58000d58e5a957ee37c5.zip
private-etc: moved group names to @group syntax; GUI group renamed as @x11 group; added nvidia and X11 directories to @x11 group.
Diffstat (limited to 'src/include')
-rw-r--r--src/include/etc_groups.h16
1 files changed, 9 insertions, 7 deletions
diff --git a/src/include/etc_groups.h b/src/include/etc_groups.h
index 421837fbb..fcb824778 100644
--- a/src/include/etc_groups.h
+++ b/src/include/etc_groups.h
@@ -23,7 +23,7 @@
23 23
24#define ETC_MAX 256 24#define ETC_MAX 256
25 25
26// DEFAULT 26// @default
27static char *etc_list[ETC_MAX + 1] = { // plus 1 for ending NULL pointer 27static char *etc_list[ETC_MAX + 1] = { // plus 1 for ending NULL pointer
28 "alternatives", 28 "alternatives",
29 "fonts", 29 "fonts",
@@ -42,7 +42,7 @@ static char *etc_list[ETC_MAX + 1] = { // plus 1 for ending NULL pointer
42 NULL 42 NULL
43}; 43};
44 44
45// SOUND 45// @sound
46static char *etc_group_sound[] = { 46static char *etc_group_sound[] = {
47 "alsa", 47 "alsa",
48 "asound.conf", 48 "asound.conf",
@@ -51,7 +51,7 @@ static char *etc_group_sound[] = {
51 NULL 51 NULL
52}; 52};
53 53
54// NETWORK 54// @network
55static char*etc_group_network[] = { 55static char*etc_group_network[] = {
56 "hostname", 56 "hostname",
57 "hosts", 57 "hosts",
@@ -60,7 +60,7 @@ static char*etc_group_network[] = {
60 NULL 60 NULL
61}; 61};
62 62
63// TLS-CA 63// @tls-ca
64static char *etc_group_tls_ca[] = { 64static char *etc_group_tls_ca[] = {
65 "ca-certificates", 65 "ca-certificates",
66 "crypto-policies", 66 "crypto-policies",
@@ -70,8 +70,8 @@ static char *etc_group_tls_ca[] = {
70 NULL 70 NULL
71}; 71};
72 72
73// GUI 73// @x11
74static char *etc_group_gui[] = { 74static char *etc_group_x11[] = {
75 "xdg", 75 "xdg",
76 "drirc", 76 "drirc",
77 "dconf", 77 "dconf",
@@ -80,10 +80,12 @@ static char *etc_group_gui[] = {
80 "kde4rc", 80 "kde4rc",
81 "kde5rc", 81 "kde5rc",
82 "pango", // text rendering/internationalization 82 "pango", // text rendering/internationalization
83 "nvidia",
84 "X11",
83 NULL 85 NULL
84}; 86};
85 87
86// GAMES 88// @games
87static char *etc_group_games[] = { 89static char *etc_group_games[] = {
88 "timidity", // MIDI 90 "timidity", // MIDI
89 "timidity.cfg", 91 "timidity.cfg",