aboutsummaryrefslogtreecommitdiffstats
path: root/src/firejail/env.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/firejail/env.c')
-rw-r--r--src/firejail/env.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/firejail/env.c b/src/firejail/env.c
index a09be8a77..fd4bfbd57 100644
--- a/src/firejail/env.c
+++ b/src/firejail/env.c
@@ -132,6 +132,10 @@ void env_defaults(void) {
132 if (cfg.shell && setenv("SHELL", cfg.shell, 1) < 0) 132 if (cfg.shell && setenv("SHELL", cfg.shell, 1) < 0)
133 errExit("setenv"); 133 errExit("setenv");
134 134
135 // spawn KIO slaves inside the sandbox
136 if (setenv("KDE_FORK_SLAVES", "1", 1) < 0)
137 errExit("setenv");
138
135 // set prompt color to green 139 // set prompt color to green
136 int set_prompt = 0; 140 int set_prompt = 0;
137 if (checkcfg(CFG_FIREJAIL_PROMPT)) 141 if (checkcfg(CFG_FIREJAIL_PROMPT))