rc

Update install script

Bringing it more up-to-date after a long time: - Replace VLC with MPV because it's a lot better - Remove Spacemacs config, currently using Ghent Emacs - Remove commented Chromium installation, fuck Chromium - Replace Firefox with Firefox Developer Edition - Add echo messages with further instructions - Remove Rust standard install, don't use it enough to warrant that.

Author
Maarten Vangeneugden
Date
July 30, 2019, 4:16 p.m.
Hash
1330a8afdf35d7dce4ffd7f59cfed79fc625827b
Parent
bf985a0d3c3c80cefae7d8e8a165b683eaec0269
Modified file
install.sh

install.sh

6 additions and 10 deletions.

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 emacs 
5
-
# Don't forget to install the keys for SSH!
6
-
7
-
# Installing Spacemacs because it's bae as fuck
8
-
git clone https://github.com/syl20bnr/spacemacs ~/.emacs.d
9
-
+
5
echo "Don't forget to install the keys for SSH!\n"
+
6
10
7
# Installing shell data:
11
8
sudo pacman -S --noconfirm zsh zsh-completions zsh-grml-config
12
9
13
10
# Installing the Noto fonts:
14
11
sudo pacman -S --noconfirm noto-fonts noto-fonts-emoji
15
12
# Firefox:
16
13
sudo pacman -S --noconfirm firefox
17
-
# Uncomment next line for Dutch firefox translations.
+
14
# Uncomment next line for Dutch firefox translations.
18
15
#sudo pacman -S --noconfirm firefox-i18n-nl
19
16
# I've ditched Firefox in favor of Chromium, because Chromium doesn't vomit when confronted with XWayland.
20
-
#sudo pacman -S --noconfirm chromium
21
-
22
17
# Sound handling (Don't forget to unmute using alsamixer!)
23
18
sudo pacman -S --noconfirm alsa-utils pulseaudio pulseaudio-jack pulseaudio-bluetooth
24
19
+
20
25
21
# To easily make use of the AUR, I'll first install Pacaur, which needs some
26
22
# special treatment up front:
27
23
cd ~/Downloads
28
24
wget https://aur.archlinux.org/cgit/aur.git/snapshot/pacaur.tar.gz
29
25
tar -x -f pacaur.tar.gz
30
26
cd pacaur
31
27
makepkg -sri --noconfirm
32
28
cd ..
33
29
rm -r pacaur
34
30
cd ~
35
31
36
32
# Making a directory in which to store all repositories. It's basically a
37
33
# repository for repositories =3
38
34
mkdir Repositories
39
35
40
36
# Making some common aliases for some pieces of software
41
37
alias vi nvim
42
38
alias vim nvim
43
39
44
40
# Some Python dependencies that need to be installed
45
41
pip install paramiko
46
42
47
43
# Collecting software from the AUR:
48
44
pacaur -S vim-youcompleteme-git
49
-
pacaur -S clojure leiningen  # Clojure's 'project manager' thingy + Clojure
50
-
# Next line installs all required software for the desktop environment.
+
45
pacaur -S --noconfirm clojure leiningen  # Clojure's 'project manager' thingy + Clojure
+
46
# Next line installs all required software for the desktop environment.
51
47
pacaur -S i3-gaps feh rofi compton i3lock-wrapper
52
48
# Installing Polybar and i3ipc-glib-git because the first one is awesome, the
53
49
# second one (allegedly) necessary for i3 interaction for Polybar:
54
50
#pacaur -S --noconfirm polybar i3ipc-glib-git # Disabled because I'm back to i3status
55
51
# i3blocks optional dependencies:
56
52
pacaur -S acpi bc lm_sensors playerctl sysstat
57
53
# A terminal emulator:
58
54
pacaur -S --noconfirm rxvt-unicode
59
55
# Also, DO NOT use Termite. It's an awful thing to work with NeoVim, and slows
60
56
# down to a fucking tortoise speed.
61
57
62
58
# Now, assuming I'm using the my standard setup for Yabar, I need the JSON
63
59
# parser to correctly output my workspace name:
64
60
pacaur -S --noconfirm jq
65
61
66
62
# Uncomment when there is a driver for the Validity VFS495 138a:003f figerprint
67
63
# reader, and still working on that gorgeous laptop:
68
64
#pacaur -S --noconfirm fprintd
69
65
70
66
pacaur -S --noconfirm rsync  # Used for backing up data that can't be done properly with Git
71
67
pacaur -S --noconfirm neomutt urlview  # Least sucky mail client
72
68
73
69
# Installing CRON job services
74
70
pacaur -S --noconfirm cronie
75
71
# TODO Add a line that makes a symbolic link to my custom Cron file
76
72
sudo systemctl enable cronie.service
77
73
78
74
pacaur -S --noconfirm irssi  # IRC client
79
75
pacaur -S --noconfirm ranger w3m  # File manager. w3m for image previews
80
76
# TODO link ranger/rc.conf and scope.sh symbolically to .config/ranger
81
77
82
78
# Fonts
83
79
# Now I don't like Ubuntu, but their fonts are amazing.
84
80
pacaur -S --noconfirm ttf-ubuntu-font-family ttf-hack ttf-fira-code
85
81
86
82
# MPV is used for playing videos, and is required when using the 'Watch with
87
83
# MPV' plugin for Firefox. It's way more lightweight, and I don't get why both
88
84
# Chrome and Firefox don't do this automatically, and default to software
89
85
# decoding instead on the hardware GPU.
90
86
pacaur -S --noconfirm mpv youtube-dl-git
91
87