aboutsummaryrefslogtreecommitdiff
path: root/install/install_debian.sh
diff options
context:
space:
mode:
authorJakob Stendahl <jakobste@uio.no>2020-08-27 09:18:33 +0200
committerJakob Stendahl <jakobste@uio.no>2020-08-27 09:18:33 +0200
commit2916ae8bc25797c4516e832851f5f9f28f1aa10c (patch)
treed8be6808bd7c5dbe47e3710c04e7e460f8a6709d /install/install_debian.sh
parent67c181b213519205fe0e7bac4646349652835dbb (diff)
parentbb010c264279f78ebd917be561349b3c344a55ec (diff)
downloaddotfiles-2916ae8bc25797c4516e832851f5f9f28f1aa10c.tar.gz
dotfiles-2916ae8bc25797c4516e832851f5f9f28f1aa10c.zip
Dep change
Diffstat (limited to 'install/install_debian.sh')
-rwxr-xr-xinstall/install_debian.sh9
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)