This commit is contained in:
2026-01-24 07:52:33 +00:00
parent c96812c6e9
commit 608c0dad96

View File

@@ -20,6 +20,24 @@ BASH_BASHRC="/etc/bash.bashrc"
MARKER_START="# >>> dotfiles (managed) >>>" MARKER_START="# >>> dotfiles (managed) >>>"
MARKER_END="# <<< dotfiles (managed) <<<" MARKER_END="# <<< dotfiles (managed) <<<"
# Select install mode (PS1, banner, or both)
install_ps1=1
install_banner=1
if [[ -t 0 ]]; then
echo "Installer valg:"
echo " 1) Kun PS1"
echo " 2) Kun banner"
echo " 3) Begge (PS1 + banner)"
read -r -p "Velg [3]: " install_choice
case "${install_choice}" in
1) install_ps1=1; install_banner=0 ;;
2) install_ps1=0; install_banner=1 ;;
""|3) install_ps1=1; install_banner=1 ;;
*) echo "Ugyldig valg, bruker begge."; install_ps1=1; install_banner=1 ;;
esac
fi
if [[ "$install_banner" -eq 1 ]]; then
# Ensure required packages are installed (no prompt) # Ensure required packages are installed (no prompt)
missing_pkgs=() missing_pkgs=()
if ! command -v figlet >/dev/null 2>&1; then if ! command -v figlet >/dev/null 2>&1; then
@@ -70,13 +88,18 @@ else
printf '%s\n' "${current_punchline}" > /etc/ps1-punchline printf '%s\n' "${current_punchline}" > /etc/ps1-punchline
fi fi
chmod 0644 /etc/ps1-punchline chmod 0644 /etc/ps1-punchline
fi
# Copy modules # Copy modules
if [[ "$install_ps1" -eq 1 ]]; then
cp -f "$SRC_PS1" "$DST_PS1" cp -f "$SRC_PS1" "$DST_PS1"
chmod 0644 "$DST_PS1" chmod 0644 "$DST_PS1"
fi
if [[ "$install_banner" -eq 1 ]]; then
cp -f "$SRC_BANNER" "$DST_BANNER" cp -f "$SRC_BANNER" "$DST_BANNER"
chmod 0644 "$DST_BANNER" chmod 0644 "$DST_BANNER"
fi
# Ensure /etc/bash.bashrc sources both (idempotent) # Ensure /etc/bash.bashrc sources both (idempotent)
tmp="$(mktemp)" tmp="$(mktemp)"
@@ -93,12 +116,18 @@ cat >> "$tmp" <<EOF
$MARKER_START $MARKER_START
# Load PS1 + Banner (managed) # Load PS1 + Banner (managed)
if [ -r "$DST_PS1" ]; then $(if [[ "$install_ps1" -eq 1 ]]; then cat <<'INNER'
. "$DST_PS1" if [ -r "/etc/profile.d/ps1.sh" ]; then
. "/etc/profile.d/ps1.sh"
fi fi
if [ -r "$DST_BANNER" ]; then INNER
. "$DST_BANNER" fi)
$(if [[ "$install_banner" -eq 1 ]]; then cat <<'INNER'
if [ -r "/etc/profile.d/banner.sh" ]; then
. "/etc/profile.d/banner.sh"
fi fi
INNER
fi)
$MARKER_END $MARKER_END
EOF EOF
@@ -109,8 +138,12 @@ fi
rm -f "$tmp" rm -f "$tmp"
echo "✅ Installert globalt (Linux/WSL):" echo "✅ Installert globalt (Linux/WSL):"
if [[ "$install_ps1" -eq 1 ]]; then
echo " - $DST_PS1" echo " - $DST_PS1"
fi
if [[ "$install_banner" -eq 1 ]]; then
echo " - $DST_BANNER" echo " - $DST_BANNER"
fi
echo " - sourcet fra $BASH_BASHRC" echo " - sourcet fra $BASH_BASHRC"
echo echo
echo "Åpne et nytt shell for å se endringene." echo "Åpne et nytt shell for å se endringene."