diff options
Diffstat (limited to 'install/install_debian.sh')
-rwxr-xr-x | install/install_debian.sh | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/install/install_debian.sh b/install/install_debian.sh index ba4fec2..dc1d3ec 100755 --- a/install/install_debian.sh +++ b/install/install_debian.sh @@ -25,7 +25,7 @@ function dlgYN() { dlgYN "> Install \"Highlight, atool, w3m, mediainfo, vim, git\"" res if [ $res -eq 1 ]; then tput sc - sudo apt -y install highlight atool w3m mediainfo curl zsh, vim, git + sudo apt -y install highlight atool w3m mediainfo curl zsh vim git python3-pip tput rc; tput ed fi @@ -51,6 +51,13 @@ if [ $res -eq 1 ]; then tput rc; tput ed fi +dlgYN "> Install powerlevel9k" res +if [ $res -eq 1 ]; then + tput sc + git clone https://github.com/bhilburn/powerlevel9k.git ~/.oh-my-zsh/custom/themes/powerlevel9k + tput rc; tput ed +fi + dlgYN "> Create symlinks" res if [ $res -eq 1 ]; then CWD=$(pwd) |