diff options
author | Jakob Stendahl <14180120+JakobST1n@users.noreply.github.com> | 2020-08-25 20:25:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-25 20:25:12 +0200 |
commit | fe619514337c772ac2c68f9eef4b064a81582adc (patch) | |
tree | 68855c0e8d08b64ebad1ca9797d0993bd2bfa4ef /install | |
parent | 80985a3f817074537bb5d997fc4923294a0c3993 (diff) | |
download | dotfiles-fe619514337c772ac2c68f9eef4b064a81582adc.tar.gz dotfiles-fe619514337c772ac2c68f9eef4b064a81582adc.zip |
Update install_debian.sh
Diffstat (limited to 'install')
-rw-r--r-- | install/install_debian.sh | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/install/install_debian.sh b/install/install_debian.sh index 462beaf..820cf91 100644 --- a/install/install_debian.sh +++ b/install/install_debian.sh @@ -25,7 +25,7 @@ function dlgYN() { dlgYN "> Install \"Highlight, atool, w3m, mediainfo\"" res if [ $res -eq 1 ]; then tput sc - sudo apt -y install highlight atool w3m mediainfo curl zsh + sudo apt -y install highlight atool w3m mediainfo curl zsh vim python3-pip tput rc; tput ed fi @@ -51,10 +51,11 @@ if [ $res -eq 1 ]; then tput rc; tput ed fi -dlgYN "> Install powerlevel9k" res +dlgYN "> Install powerlevel10k" res if [ $res -eq 1 ]; then tput sc - git clone https://github.com/bhilburn/powerlevel9k.git ~/.oh-my-zsh/custom/themes/powerlevel9k + #git clone https://github.com/bhilburn/powerlevel9k.git ~/.oh-my-zsh/custom/themes/powerlevel9k + git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k tput rc; tput ed fi |