mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 04:47:35 +00:00
Taskbar: chdir to home directory before launching apps
This commit is contained in:
parent
e2b7e7c390
commit
c18f12bb96
1 changed files with 5 additions and 0 deletions
|
@ -28,6 +28,7 @@
|
||||||
#include "TaskbarButton.h"
|
#include "TaskbarButton.h"
|
||||||
#include <AK/SharedBuffer.h>
|
#include <AK/SharedBuffer.h>
|
||||||
#include <LibCore/ConfigFile.h>
|
#include <LibCore/ConfigFile.h>
|
||||||
|
#include <LibCore/UserInfo.h>
|
||||||
#include <LibGUI/BoxLayout.h>
|
#include <LibGUI/BoxLayout.h>
|
||||||
#include <LibGUI/Button.h>
|
#include <LibGUI/Button.h>
|
||||||
#include <LibGUI/Desktop.h>
|
#include <LibGUI/Desktop.h>
|
||||||
|
@ -105,6 +106,10 @@ void TaskbarWindow::create_quick_launch_bar()
|
||||||
if (pid < 0) {
|
if (pid < 0) {
|
||||||
perror("fork");
|
perror("fork");
|
||||||
} else if (pid == 0) {
|
} else if (pid == 0) {
|
||||||
|
if (chdir(get_current_user_home_path().characters()) < 0) {
|
||||||
|
perror("chdir");
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
execl(app_executable.characters(), app_executable.characters(), nullptr);
|
execl(app_executable.characters(), app_executable.characters(), nullptr);
|
||||||
perror("execl");
|
perror("execl");
|
||||||
ASSERT_NOT_REACHED();
|
ASSERT_NOT_REACHED();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue