From aae10c28883bc2a66e9304b7cc4b49e85fa70186 Mon Sep 17 00:00:00 2001
From: Pavel Kirilin <win10@list.ru>
Date: Mon, 1 Feb 2021 03:37:03 +0400
Subject: [PATCH] Added python utillities.

---
 install.sh | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/install.sh b/install.sh
index e4c541c..b371dd7 100644
--- a/install.sh
+++ b/install.sh
@@ -31,6 +31,11 @@ function update_firefox_profile(){
   cp -v ./dotfiles/firefox/userChrome.css "$firefox_dir/$fire_profile/chrome"
 }
 
+function install_python_deps(){
+	curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python -
+	curl https://pyenv.run | bash
+}
+
 function copy_dotfiles(){
   mkdir -p "$HOME/.local/bin/"
   sed "s#{{dwm_dir}}#$(pwd)/dwm#g" ./update_desktop.sh > "$HOME/.local/bin/update_desktop"
@@ -65,6 +70,7 @@ function main(){
   build_libs_from_sources
   # shellcheck disable=SC2046
   pikaur -Syu --needed --noconfirm --noedit $(cat ./pikaur.deps)
+  install_python_deps
   copy_dotfiles
   update_repo
   echo "######## Installation complete ########"
-- 
GitLab