-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2-user.sh
executable file
·91 lines (84 loc) · 3.29 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
84
85
86
87
88
89
90
91
#!/usr/bin/env bash
#-------------------------------------------------------------------------
# █████╗ ██████╗ ██████╗██╗ ██╗████████╗██╗████████╗██╗ ██╗███████╗
# ██╔══██╗██╔══██╗██╔════╝██║ ██║╚══██╔══╝██║╚══██╔══╝██║ ██║██╔════╝
# ███████║██████╔╝██║ ███████║ ██║ ██║ ██║ ██║ ██║███████╗
# ██╔══██║██╔══██╗██║ ██╔══██║ ██║ ██║ ██║ ██║ ██║╚════██║
# ██║ ██║██║ ██║╚██████╗██║ ██║ ██║ ██║ ██║ ╚██████╔╝███████║
# ╚═╝ ╚═╝╚═╝ ╚═╝ ╚═════╝╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚══════╝
#-------------------------------------------------------------------------
echo -e "\nINSTALLING AUR SOFTWARE\n"
# You can solve users running this script as root with this and then doing the same for the next for statement. However I will leave this up to you.
echo "CLONING: YAY"
cd ~
git clone "https://aur.archlinux.org/yay.git"
cd ${HOME}/yay
makepkg -si --noconfirm
cd ~
touch "$HOME/.cache/zshhistory"
git clone "https://github.com/ChrisTitusTech/zsh"
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git $HOME/powerlevel10k
ln -s "$HOME/zsh/.zshrc" $HOME/.zshrc
PKGS=(
'autojump'
'awesome-terminal-fonts'
'btop-git'
'brave-bin' # Brave Browser
'dxvk-bin' # DXVK DirectX to Vulcan
'github-desktop-bin' # Github Desktop sync.
'lightly-git'
'lightlyshaders-git'
'mangohud' # Gaming FPS Counter.
'mangohud-common'
'nerd-fonts-fira-code'
'nordic-darker-standard-buttons-theme'
'nordic-darker-theme'
'nordic-kde-git'
'nordic-theme'
'noto-fonts-emoji'
'papirus-icon-theme'
'plasma-pa'
'ocs-url' # install packages from websites.
'sddm-nordic-theme-git'
'snapper-gui-git'
'ttf-droid'
'ttf-hack'
'ttf-meslo' # Nerdfont package.
'ttf-roboto'
'ttf-ms-fonts'
'ttf-vista-fonts'
'zoom'
'snap-pac'
'snapd'
'visual-studio-code-bin'
'vlc-luajit'
'vlc-bittorrent'
'cef-minimal'
'ddccontrol'
'fluent-reader' # RSS Feed Client
'mailspring' # E-Mail Client.
'spotify'
'obs-studio-browser' # OBS Studio with the Browser Plugin preinstalled.
'droidcam-obs-plugin'
'obs-advanced-scene-switcher'
'opencl-amd'
'protonup-qt'
'heroic-games-launcher-bin'
'teamviewer'
'lug-helper'
### Firmware Addons
'mkinitcpio-firmware' # Optional firmware for the default linux kernel to get rid of the annoying 'WARNING: Possibly missing firmware for module:' messages
#'aic94xx-firmware' # Adaptec SAS 44300, 48300, 58300 Sequencer Firmware for AIC94xx driver
#'wd719x-firmware' # Driver for Western Digital WD7193, WD7197 and WD7296 SCSI cards
)
for PKG in "${PKGS[@]}"; do
yay -S --noconfirm $PKG
done
export PATH=$PATH:~/.local/bin
cp -r $HOME/ArchTitus/dotfiles/* $HOME/.config/
pip install konsave
konsave -i $HOME/ArchTitus/kde.knsv
sleep 1
konsave -a kde
echo -e "\nDone!\n"
exit