-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.sh
47 lines (32 loc) · 1.08 KB
/
install.sh
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
# Begin
echo 'This script will install some things that will make your experience on archlabs better!'
echo ''
echo 'Created by Antoni Kepinski & Contributors, licensed under the MIT license.'
echo 'https://github.com/xxczaki/archlabs-setup'
echo ''
echo '-----------------------------------'
# Remove baph & install yay (aur helpers)
sleep 5; baph --install --noconfirm yay
yay --remove --noconfirm baph
# Full system upgrade
sudo pacman -Syyuu --noconfirm
# Some cool packages
yay -S --noconfirm git
yay -S --noconfirm curl
yay -S --noconfirm nodejs
yay -S --noconfirm bat
yay -S --noconfirm preload
yay -S --noconfirm archfetch
# Fix zsh
yay --remove --noconfirm grml-zsh-config
# Install some zsh plugins
yay -S --noconfirm zsh-syntax-highlighting
yay -S --noconfirm powerline
yay -S --noconfirm zsh-completions
# Install zsh, oh-my-zsh and change the default shell
yay -S --noconfirm zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
chsh -s $(which zsh) && $SHELL --version
## End
echo ''
echo 'Done! Please reboot your system :)'