-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall-dependencies.sh
executable file
·52 lines (40 loc) · 1.3 KB
/
install-dependencies.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
sudo pacman -Syu
sudo pacman --needed -S git \
zsh \
yay \
jq \
xclip \
compton \
feh \
zotero \
transmission-gtk \
neofetch \
catimg \
python-pip \
redshift \
mesa lib32-mesa xf86-video-amdgpu vulkan-radeon lib32-vulkan-radeon \
xorg-xev \
playerctl \
opera-ffmpeg-codecs \
amdvlk \
unrar \
zip \
libreoffice-fresh \
atool \
cmake \
curl \
wget \
nodejs \
npm
yay --needed -S termite docker docker-compose polybar neovim google-chrome rofi ttf-font-awesome pavucontrol pamixer tzupdate boost slack-desktop zathura code xorg-xwininfo python-neovim-git ttf-inconsolata opera nemo vulkan-amdgpu-pro dunst-git
# Make docker usable without sudo
sudo usermod -aG docker $USER
newgrp docker
# Install Polybar scripts
git clone https://github.com/polybar/polybar-scripts $HOME/polybar-scripts
# Install ZSH dependencies
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
## Make ZSH my default shell
chsh -s $(which zsh)
## Install Syntax Highlightin for ZSH
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git $HOME/.oh-my-zsh/plugins/zsh-syntax-highlighting