Add zsh mod for code-server

This commit is contained in:
MiguelNdeCarvalho
2020-10-21 19:12:41 +01:00
parent ca3be57894
commit 8a269aa62e
7 changed files with 22 additions and 73 deletions
+12
View File
@@ -0,0 +1,12 @@
#!/usr/bin/with-contenv bash
# First install ZSH
apt-get update && apt-get install -y \
zsh
# Install oh-my-zsh
sudo -u abc "git clone https://github.com/ohmyzsh/ohmyzsh.git ~/.oh-my-zsh"
sudo -u abc "cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc"
# Setup shell as default
chsh -s $(which zsh) abc