-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patharch-setup.sh
More file actions
executable file
·61 lines (47 loc) · 1.59 KB
/
Copy patharch-setup.sh
File metadata and controls
executable file
·61 lines (47 loc) · 1.59 KB
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
#!/bin/bash
sudo pacman -Syu
sudo pacman -S ranger i3-gaps compton python3 go nodejs npm stow \
git feh thunar fish python-pip py3status playerctl arandr flameshot \
imagemagick openvpn pavucontrol docker docker-compose gnome-tweaks lxappearance \
nextcloud-client vlc virt-manager gnome-terminal gnome-terminal-transparency cava mpv scrot \
xorg-backlight alsa-utils dunst rofi
git clone https://aur.archlinux.org/yay-git.git
cd yay-git
makepkg -si
cd ../
yay -S networkmanager-wireguard-git
git clone https://aur.archlinux.org/snapd.git
cd snapd
makepkg -si
sudo systemctl enable --now snapd.socket
sudo ln -s /var/lib/snapd/snap /snap
cd ../
sudo snap install teams-for-linux todoist spotify
sudo snap install code --classic
sudo snap install discord --classic
sudo snap install spotify
sudo snap install goland --classic
sudo snap install pycharm-professional --classic
sudo snap install intellij-idea-ultimate --classic
sudo snap install webstorm --classic
sudo snap install rider --classic
sudo snap install datagrip --classic
# for my custom i3 bar
python3 -m pip install i3pystatus colour psutil dbus-python
# generating colourschmes for my system
python3 -m pip install --user pywal
sudo systemctl enable docker
sudo systemctl restart docker
sudo usermod -a -G docker lukas
# setup npm
mkdir "${HOME}/.npm-packages"
npm config set prefix "${HOME}/.npm-packages"
# set fish default shell
chsh -s `which fish`
# removing existing configs
rm -r ~/.config/*
# update configs
stow config/
echo "Done setting up. Rebooting the system in 5 seconds to apply all configurations"
sleep 5
sudo reboot