-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall-gross.sh
76 lines (66 loc) · 1.27 KB
/
install-gross.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#!/bin/bash
find $HOME/.dotfiles/ -exec chmod +x {} \; # add executable permission to every file in this directory
# Install the prerrequisites
. prerrequisites.sh
# . helpers.sh # load helper functions
echo_info "Updating system"
_update
#echo_info "Installing packages from the official repositories..."
#_install core
#echo_info "Installing packages from AUR repositories..."
#_install aur
# Core packages from official repository
echo_info "Installing packages with Pacman..."
sudo pacman -S --needed --noconfirm amd-ucode \
xorg-server xorg-xinit xorg-xrandr xorg-font-util xorg-mkfontscale \
base-devel \
iproute2 \
nvidia-utils \
nvidia-lts \
alsa-utils \
alsa-plugins \
pulseaudio \
pulseaudio-alsa \
pavucontrol \
playerctl \
openssh \
i3-gaps \
alacritty \
git \
tmux \
neovim \
bat \
jq \
fzf \
curl \
diff-so-fancy \
feh \
figlet \
firefox-developer-edition \
flameshot \
neofetch \
pv \
ranger \
rofi \
tldr \
tree \
lsd \
unzip \
wget \
zsh \
python
# AUR Packages
echo_info "Installing AUR packages with Yay..."
yay -S --needed --noconfirm --answerdiff=None --removemake --cleanafter nvm \
ytop-bin \
zenith-bin \
compton-tryone-git \
vscodium-bin \
direnv \
polybar \
spotify \
spicetify-cli
echo_info "Running Install files"
_run_install_files
# Update system
sudo pacman -Syu