diff options
-rwxr-xr-x | install.sh | 39 |
1 files changed, 26 insertions, 13 deletions
@@ -1,19 +1,31 @@ -#function install{ -# yaourt -S $1 --needed --noconfirm -# # clear temp -# /bin/rm -rf /tmp/* /tmp/.* &>/dev/null -#} +function printColor { + YELLOW='\033[0;33m' + NC='\033[0m' # No Color + printf "${YELLOW}$*${NC}\n" +} +function printLine { + printColor "%`tput cols`s"|tr ' ' '#' +} + +function install { + printLine + printColor $1 + yaourt -S $1 --needed --noconfirm + # clear temp + /bin/rm -rf /tmp/* /tmp/.* &>/dev/null +} # utilities sudo pacman -S git --needed sudo pacman -S xterm --needed sudo pacman -S yaourt --needed -sudo pacman -S xclip --needed -sudo pacman -S vim --needed -sudo pacman -S imagemagick --needed -sudo pacman -S scrot --needed -yaourt -S insync --needed +install xclip +install vim +install imagemagick +install scrot +install insync +install ranger # i3 yaourt -S i3-gaps --needed @@ -25,7 +37,8 @@ yaourt -S i3lock-color-git --needed yaourt -S anaconda --needed --tmp ~/Desktop # applications -yaourt -S texlive-most --needed --noconfirm -sudo pacman -S emacs --needed +install texlive-most +install biber +install emacs git clone https://github.com/syl20bnr/spacemacs ~/.emacs.d -yaourt -S slack-desktop --needed +install slack-desktop |