From ed75ac16a0c8472a0e55a3e495e9601bb30edac1 Mon Sep 17 00:00:00 2001 From: neodarz Date: Mon, 9 Sep 2019 07:40:00 +0200 Subject: Add more verbose information when running --- install.sh | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) (limited to 'install.sh') diff --git a/install.sh b/install.sh index cd90fd9..bdf3cc7 100755 --- a/install.sh +++ b/install.sh @@ -17,8 +17,12 @@ # install common +echo "Update system..." + #sudo pacman -Syu +echo "Install some common app.." + #sudo pacman -S git #sudo pacman -S wget #sudo pacman -S python @@ -61,10 +65,15 @@ #sudo pacman -S openssh # pikaur installation + +echo "Install pikaur..." + #git clone https://aur.archlinux.org/pikaur.git #cd pikaur #makepkg -fsri +echo "[AUR] Install some common app..." + #pikaur -S waterfox-bin #pikaur -S grv #pikaur -S friendly-find @@ -72,45 +81,65 @@ # install needed package for profile +echo "Install package needed by dotfiles..." + ## zsh +echo "Install zsh..." + #sudo pacman -S zsh ## aria2 +echo "Install aria2 & diana..." + #sudo pacman -S aria2 #sudo pacman -S diana-git ## alacritty +echo "Install alacritty..." + #sudo pacman -S alacritty ## cheat +echo "Install cheat..." + #pikaur -S cheat-git ## gnupg ## xorg +echo "Install xorg..." + #sudo pacman -S xorg ## xinit +echo "Install xinit..." + #sudo pacman -S xorg-xinit ## i3 +echo "Install i3..." + #sudo pacman -S i3-wm #sudo pacman -S python-i3-py #pikaur -S i3lock-fancy-multimonitor-git ## i3pystatus +echo "Install i3pystatus..." + #pikaur -S i3pystatus ## scripts +echo "Install packages need by scripts..." + #sudo pacman -S pv #sudo pacman -S python-i3-py #sudo pacman -S imagemagick @@ -125,45 +154,67 @@ ## khal +echo "Install khal...." + #sudo pacman -S khal ## msmtp +echo "Install msmtp..." + #sudo pacman -S msmtp ## mutt +echo "Install mutt..." + #sudo pacman -S neomutt ## newsboat +echo "Install newsboat..." + #sudo pacman -S newsboat ## notmuch +echo "Install notmuch..." + #sudo pacman -S notmuch ## nvim +echo "Install nvim..." + #sudo pacman -S python-neovim python-twisted ## offlineimap +echo "Install ofllineimap..." + #sudo pacman -S offlineimap ## vdirsyncer +echo "Install vdirsyncer..." + #sudo pacman -S vdirsyncer # install dotfiles +echo "install dotdrop..." + #./dotdrop.sh install #sudo ./dotdrop.sh install --cfg=system-config.yaml # post install dotfile +echo "Dotfile post install..." + ## zsh +echo "Install zsh plugins..." + ## After zsh installed, install this three plugins : #git clone git://github.com/zsh-users/zsh-autosuggestions ~/.zsh/plugins/zsh-autosuggestions #git clone git://github.com/zsh-users/zsh-history-substring-search ~/.zsh/plugins/zsh-history-substring-search @@ -171,20 +222,28 @@ #git clone https://github.com/zsh-users/zsh-completions ~/.zsh/plugins/zsh-completions #git clone https://github.com/kutsan/zsh-system-clipboard ~/.zsh/plugins/zsh-system-clipboard +echo "Change shell to zsh..." + #chsh -s $(which zsh) ## nvim +echo "Install vim plugins..." + #git clone https://github.com/vundlevim/vundle.vim.git ~/.config/nvim/bundle/Vundle.vim #nvim +PluginInstall +qall ## notmuch +echo "Install notmuch database..." + #notmuch new ## vdirsyncer +echo "Install vdirsyncer..." + #vdirsyncer discover #vdirsyncer sync -- cgit v1.2.1