This commit is contained in:
2025-06-14 20:52:55 +02:00
parent 5d24bfda0b
commit 248068c55a
7 changed files with 105 additions and 103 deletions

59
install
View File

@ -1,29 +1,30 @@
#!/usr/bin/env bash
set -e
echo
echo "[+] Updating System Packages..."
echo
sudo apt update -qq
echo
echo "[+] Installing Dependencies..."
echo
sudo apt install -yqq \
zsh \
curl \
exa \
direnv \
bat \
btop
echo
echo "[+] Installing Oh My Zsh..."
echo
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
echo "Include $HOME/.config/ssh/*" >> "$HOME/.ssh/config"
./setup
#!/usr/bin/env bash
set -e
echo
echo "[+] Updating System Packages..."
echo
sudo apt update -qq
echo
echo "[+] Installing Dependencies..."
echo
sudo apt install -yqq \
zsh \
curl \
exa \
direnv \
bat \
btop \
stow
echo
echo "[+] Installing Oh My Zsh..."
echo
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
echo "Include $HOME/.config/ssh/*" >> "$HOME/.ssh/config"
./setup