From 26027f6391b19cd7e806ee3ae83c2cc4b9db3521 Mon Sep 17 00:00:00 2001 From: nathan Date: Fri, 19 Jun 2020 16:47:20 +0100 Subject: [PATCH] Moved shell changes to the bottom, as they require user input that halts everything after it. --- install.sh | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/install.sh b/install.sh index 8754359..24735dd 100755 --- a/install.sh +++ b/install.sh @@ -2,10 +2,6 @@ # Terminal shit sudo apt install git zsh tmux vim neofetch wget curl gdebi parted -# Oh my zsh -sudo sh -c "$(wget https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh -O -)" -# Change default shell to zsh -sudo chsh -s /bin/zsh # Image viewer, music player, rss feed, etc sudo apt install feh cmus newsboat @@ -44,3 +40,8 @@ curl -L https://github.com/gokcehan/lf/releases/latest/download/lf-linux-amd64.t # dwm Window manager # dmenu Launcher # st Terminal + +# Oh my zsh +sudo sh -c "$(wget https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh -O -)" +# Change default shell to zsh +sudo chsh -s /bin/zsh