rc

Improved the installer a lot with PacAUR, removed a redundant line, and aliases.

Author
Vngngdn
Date
June 29, 2016, 3:09 p.m.
Hash
da55570334706451ad4b2043a7ff68822bb63919
Parent
a33177463642414b6b0fe4e2038fcaccbbad6580
Modified file
install.sh

install.sh

10 additions and 1 deletion.

View changes Hide changes
1
1
# particulary Arch, because that's the best GNU/Linux distro =P
2
2
3
3
# The next command will install the software that I'm bound to use on my PC.
4
4
sudo pacman -S --noconfirm neovim base-devel rust vlc openssh
5
5
6
6
# Firefox:
7
7
sudo pacman -S --noconfirm firefox
8
8
# Uncomment next line for Dutch firefox translations.
9
9
sudo pacman -S --noconfirm firefox-i18n-nl
10
10
11
11
# Comment next line to stop the usual window manager from being installed.
12
12
sudo pacman -S --noconfirm sway
13
13
14
14
# To easily make use of the AUR, I'll first install Pacaur, which needs some
15
15
# special treatment up front:
16
16
cd ~/Downloads
17
17
+
18
tar -x -f pacaur.tar.gz
+
19
cd pacaur
+
20
makepkg -sri --noconfirm
+
21
cd ..
+
22
rm -r pacaur
+
23
cd ~
+
24
18
25
sudo pacman -S --noconfirm neovim 
19
-
+
26
# repository for repositories =3
+
27
mkdir Repositories
+
28
20
29
# Making some common aliases for some pieces of software
21
30
alias vi nvim
22
31
alias vim nvim
23
32