blob: efd7ac0dc86a1f94c7c6b413a336a97f87bca022 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
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
install xclip
install vim
install imagemagick
install scrot
install insync
install ranger
install tree
install aspell
install aspell-en
install htop
# i3
yaourt -S i3-gaps --needed
sudo pacman -S i3status --needed
sudo pacman -S rofi --needed
yaourt -S i3lock-color-git --needed
# anaconda
yaourt -S anaconda --needed --tmp ~/Desktop
# applications
install qutebrowser
install texlive-most
install biber
install emacs
git clone https://github.com/syl20bnr/spacemacs ~/.emacs.d
install slack-desktop
|