1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 02:07:36 +00:00

Shell: Load a different rc file when in POSIX mode

This commit is contained in:
Ali Mohammad Pur 2023-03-20 16:49:10 +03:30 committed by Andreas Kling
parent 832478ad0c
commit d997b794fa
3 changed files with 48 additions and 2 deletions

View file

@ -92,6 +92,8 @@ class Shell : public Core::Object {
public:
constexpr static auto local_init_file_path = "~/.shellrc";
constexpr static auto global_init_file_path = "/etc/shellrc";
constexpr static auto local_posix_init_file_path = "~/.posixshrc";
constexpr static auto global_posix_init_file_path = "/etc/posixshrc";
bool should_format_live() const { return m_should_format_live; }
void set_live_formatting(bool value) { m_should_format_live = value; }

View file

@ -232,8 +232,13 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
shell->run_file(file_path, false);
}
};
run_rc_file(Shell::Shell::global_init_file_path);
run_rc_file(Shell::Shell::local_init_file_path);
if (posix_mode) {
run_rc_file(Shell::Shell::global_posix_init_file_path);
run_rc_file(Shell::Shell::local_posix_init_file_path);
} else {
run_rc_file(Shell::Shell::global_init_file_path);
run_rc_file(Shell::Shell::local_init_file_path);
}
shell->cache_path();
}