From 4e64f3aebace0a1c15926a7468aee3401e144ace Mon Sep 17 00:00:00 2001 From: Frieder Schlesier Date: Fri, 26 Aug 2016 13:47:08 +0200 Subject: [PATCH] dont install i3wm by default --- install.sh | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 0ecc9b8..d453aba 100755 --- a/install.sh +++ b/install.sh @@ -150,14 +150,20 @@ main() { base_applications install_docker - - install_i3 fi if [[ $cmd == "compose" ]]; then install_compose elif [[ $cmd == "dotfiles" ]]; then get_dotfiles + elif [[ $cmd == "go" ]]; then + install_golang + elif [[ $cmd == "goprojects" ]]; then + get_public_go_projects + elif [[ $cmd == "i3" ]]; then + install_i3 + elif [[ $cmd == "odl" ]]; then + get_odl_projects fi }