-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.sh
74 lines (71 loc) · 1.83 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
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
# Packages install
sudo pacman -Syu terminus-font feh python base-devel go xdg-user-dirs zsh --noconfirm --needed
sudo pacman -S htop cmus syncthing vim odt2txt poppler ueberzug feh ranger dunst udiskie ffmpegthumbnailer highlight mediainfo glow mpv --noconfirm --needed
sudo pacman -S noto-fonts-emoji ttf-joypixels adobe-source-han-sans-otc-fonts --noconfirm --needed
sudo systemctl enable syncthing@$USER
#GUI TOOLS
sudo pacman -S pavucontrol firefox --noconfirm --needed
#File manager
sudo pacman -S nautilus nautilus-image-converter filemanager-actions file-roller --noconfirm --needed
#LIBREOFFCIE + GRAPHIC TOOLS
sudo pacman -S libreoffice-fresh libreoffice-fresh-pl gimp inkscape --noconfirm --needed
clear
# Copy dotfiles
cp -rf ~/.workflow/dotfiles/. ~/
source ~/.bashrc
source ~/.zshrc
clear
# Install universalbright
sh ~/.workflow/modules/universalbright
clear
# Compile tools
# DMENU
echo Kompilowanie DMENU
cd ~/.workflow/to_compile/dmenu
sudo make clean install
clear
#DWM
echo Kompilowanie DWM
cd ~/.workflow/to_compile/dwm
sudo make clean install
clear
#MDP
echo Kompilowanie MDP
cd ~/.workflow/to_compile/mdp
make
sudo make install
clear
#SLOCK
echo Kompilowanie SLOCK
cd ~/.workflow/to_compile/slock
sudo make clean install
clear
#ST
echo Kompilowanie ST
cd ~/.workflow/to_compile/st
sudo make clean install
clear
#Clipmenu
sudo pacman -Syu xsel --noconfirm --needed
cd ~/.workflow/to_compile/clipnotify
sudo make clean install
clear
cd ~/.workflow/to_compile/clipmenu
sudo make clean install
clear
#MODUŁY
#INSTALOWANIE UNIVERSALBRIGHT
echo instalowanie modyłów
sudo sh ~/.workflow/modules/universalbright/install/install.sh
systemctl --user import-environment DISPLAY
#YAY
cd ~
git clone https://aur.archlinux.org/yay-bin.git
cd ~/yay-bin
makepkg -si
#CZYSZCZENIE
echo Czyszczenie
rm -rf ~/yay-bin
#INSTALL AUR PACKAGES
yay -S yt-dlp
clear