mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-05 21:28:48 +00:00
Add ZSH install option
This commit is contained in:
parent
03277dd88e
commit
a9668b14ef
59
src/commands/install-zsh.sh
Normal file
59
src/commands/install-zsh.sh
Normal file
|
@ -0,0 +1,59 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
# Function to install zsh
|
||||||
|
install_zsh() {
|
||||||
|
if command -v apt-get >/dev/null 2>&1; then
|
||||||
|
sudo apt-get update
|
||||||
|
sudo apt-get install -y zsh
|
||||||
|
elif command -v yum >/dev/null 2>&1; then
|
||||||
|
sudo yum install -y zsh
|
||||||
|
elif command -v dnf >/dev/null 2>&1; then
|
||||||
|
sudo dnf install -y zsh
|
||||||
|
elif command -v pacman >/dev/null 2>&1; then
|
||||||
|
sudo pacman -Sy zsh
|
||||||
|
elif command -v zypper >/dev/null 2>&1; then
|
||||||
|
sudo zypper install -y zsh
|
||||||
|
else
|
||||||
|
echo "No compatible package manager found. Please install zsh manually." >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
# Function to setup zsh configuration
|
||||||
|
setup_zsh_config() {
|
||||||
|
CONFIG_DIR="$HOME/.config/zsh"
|
||||||
|
ZSHRC_FILE="$CONFIG_DIR/.zshrc"
|
||||||
|
|
||||||
|
# Create config directory if it doesn't exist
|
||||||
|
mkdir -p "$CONFIG_DIR"
|
||||||
|
|
||||||
|
# Write the configuration to .zshrc
|
||||||
|
cat <<EOL >"$ZSHRC_FILE"
|
||||||
|
# Lines configured by zsh-newuser-install
|
||||||
|
HISTFILE=~/.config/zsh/.histfile
|
||||||
|
HISTSIZE=5000
|
||||||
|
SAVEHIST=100000
|
||||||
|
setopt autocd extendedglob
|
||||||
|
unsetopt beep
|
||||||
|
bindkey -v
|
||||||
|
# End of lines configured by zsh-newuser-install
|
||||||
|
|
||||||
|
# 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"' | sudo tee -a /etc/zsh/zshenv
|
||||||
|
}
|
||||||
|
|
||||||
|
# Execute the installation and setup
|
||||||
|
install_zsh
|
||||||
|
|
||||||
|
if [ $? -eq 0 ]; then
|
||||||
|
echo "zsh installed successfully."
|
||||||
|
setup_zsh_config
|
||||||
|
else
|
||||||
|
echo "zsh installation failed."
|
||||||
|
exit 1
|
||||||
|
fi
|
|
@ -74,6 +74,10 @@ impl CustomList {
|
||||||
name: "Setup Neovim",
|
name: "Setup Neovim",
|
||||||
command: "bash -c \"$(curl -s https://raw.githubusercontent.com/ChrisTitusTech/neovim/main/setup.sh)\""
|
command: "bash -c \"$(curl -s https://raw.githubusercontent.com/ChrisTitusTech/neovim/main/setup.sh)\""
|
||||||
},
|
},
|
||||||
|
ListNode {
|
||||||
|
name: "Setup Zsh and Prompt",
|
||||||
|
command: with_common_script!("commands/install-zsh.sh"),
|
||||||
|
},
|
||||||
// ListNode {
|
// ListNode {
|
||||||
// name: "Just ls, nothing special, trust me",
|
// name: "Just ls, nothing special, trust me",
|
||||||
// command: include_str!("commands/special_ls.sh"),
|
// command: include_str!("commands/special_ls.sh"),
|
||||||
|
|
Loading…
Reference in New Issue
Block a user