1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-29 00:47:45 +00:00

Ports: Add default zshrc

Previosly we had a very messed up PS1 as the Shell PROMPT is not
unset correctly.

We now provide a default `zshrc` file for the system that uses
sane values for basic categories like aliases, autocompletion and
history management to make the port more usable. It also forces
the prompt to be the default zsh one.
This commit is contained in:
Fabian Dellwing 2023-04-22 20:00:28 +02:00 committed by Jelle Raaijmakers
parent 3d4d0a1243
commit 6acf03d9a8
3 changed files with 51 additions and 0 deletions

View file

@ -13,3 +13,7 @@ pre_configure() {
post_configure() {
run_replace_in_file "s/define HAVE_PRCTL 1/undef HAVE_PRCTL/" config.h
}
post_install() {
cp "${PORT_META_DIR}/zshrc" "${SERENITY_INSTALL_ROOT}/etc/"
}