Raspberry Pi OS
Initialization
sudo raspi-config
# X11
sudo apt update
sudo apt upgrade -y
sudo rpi-update
Setup
sudo apt install vim curl htop neofetch git -y
Zsh + Oh My Zsh
sudo apt install zsh -y
sh -c "$(curl -fsSL <https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh>)"
git clone <https://github.com/zsh-users/zsh-autosuggestions> ~/.oh-my-zsh/custom/plugins/zsh-autosuggestions
git clone <https://github.com/zsh-users/zsh-syntax-highlighting> ~/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting
sed -i "s/^plugins=.*/# &/" ~/.zshrc && sed -i '/^# plugins=.*/ a plugins=(git zsh-autosuggestions zsh-syntax-highlighting)' ~/.zshrc
git clone --depth=1 <https://github.com/romkatv/powerlevel10k.git> ~/.oh-my-zsh/custom/themes/powerlevel10k
sed -i "s/^ZSH_THEME=.*/# &/" ~/.zshrc && sed -i '/^# ZSH_THEME=.*/ a ZSH_THEME=\\"powerlevel10k\\/powerlevel10k\\"' ~/.zshrc
zsh
# yyyy3121512211222n1y
lxterminal
{
"background": "#323232",
"black": "#353535",
"blue": "#6C99BB",
"brightBlack": "#535353",
"brightBlue": "#8AB7D9",
"brightCyan": "#DCF4FF",
"brightGreen": "#C2E075",
"brightPurple": "#EFB5F7",
"brightRed": "#F00C0C",
"brightWhite": "#FFFFFF",
"brightYellow": "#E1E48B",
"cursorColor": "#FFFFFF",
"cyan": "#BED6FF",
"foreground": "#FFFFFF",
"green": "#A5C261",
"name": "Espresso",
"purple": "#D197D9",
"red": "#D25252",
"selectionBackground": "#FFFFFF",
"white": "#EEEEEC",
"yellow": "#FFC66D"
},
fonts
MesloLGS NF.zip
cd ./Downloads
sudo mv ./* /usr/share/fonts
vscode
sudo apt-get install wget gpg -y
wget -qO- <https://packages.microsoft.com/keys/microsoft.asc> | gpg --dearmor > packages.microsoft.gpg
sudo install -D -o root -g root -m 644 packages.microsoft.gpg /etc/apt/keyrings/packages.microsoft.gpg
echo "deb [arch=amd64,arm64,armhf signed-by=/etc/apt/keyrings/packages.microsoft.gpg] <https://packages.microsoft.com/repos/code> stable main" |sudo tee /etc/apt/sources.list.d/vscode.list > /dev/null
rm -f packages.microsoft.gpg
sudo apt install apt-transport-https -y
sudo apt update
sudo apt install code -y