linutil/core/tabs/applications-setup/zsh-setup.sh

54 lines
1.3 KiB
Bash
Raw Normal View History

2024-08-08 21:54:37 +01:00
#!/bin/sh
. ../common-script.sh
2024-08-08 21:54:37 +01:00
# Function to install zsh
2024-09-17 03:10:02 +01:00
installZsh() {
if ! command_exists zsh; then
printf "%b\n" "${YELLOW}Installing Zsh...${RC}"
case "$PACKAGER" in
pacman)
"$ESCALATION_TOOL" "$PACKAGER" -S --needed --noconfirm zsh
;;
*)
"$ESCALATION_TOOL" "$PACKAGER" install -y zsh
;;
esac
else
printf "%b\n" "${GREEN}ZSH is already installed.${RC}"
fi
2024-08-08 21:54:37 +01:00
}
# Function to setup zsh configuration
2024-09-17 03:10:02 +01:00
setupZshConfig() {
printf "%b\n" "${YELLOW}Setting up Zsh configuration...${RC}"
2024-08-08 21:54:37 +01:00
CONFIG_DIR="$HOME/.config/zsh"
ZSHRC_FILE="$CONFIG_DIR/.zshrc"
if [ ! -d "$CONFIG_DIR" ]; then
mkdir -p "$CONFIG_DIR"
fi
# Write the configuration to .zshrc
cat <<EOL >"$ZSHRC_FILE"
HISTFILE=~/.config/zsh/.histfile
HISTSIZE=5000
SAVEHIST=100000
setopt autocd extendedglob
unsetopt beep
bindkey -v
# Configure the prompt with embedded Solarized color codes
PROMPT='%F{32}%n%f%F{166}@%f%F{64}%m:%F{166}%~%f%F{15}$%f '
RPROMPT='%F{15}(%F{166}%D{%H:%M}%F{15})%f'
EOL
# Ensure /etc/zsh/zshenv sets ZDOTDIR to the user's config directory
echo 'export ZDOTDIR="$HOME/.config/zsh"' | "$ESCALATION_TOOL" tee -a /etc/zsh/zshenv
2024-08-08 21:54:37 +01:00
}
checkEnv
2024-08-23 14:12:47 +01:00
checkEscalationTool
2024-09-17 03:10:02 +01:00
installZsh
setupZshConfig