76 lines
2.7 KiB
Bash
Executable File
76 lines
2.7 KiB
Bash
Executable File
#!/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'
|
|
'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'
|
|
'sddm-nordic-theme-git'
|
|
'ocs-url' # install packages from websites
|
|
'timeshift-bin'
|
|
'ttf-droid'
|
|
'ttf-hack'
|
|
'ttf-meslo' # Nerdfont package
|
|
'ttf-roboto'
|
|
'zoom' # video conferences
|
|
|
|
)
|
|
|
|
for PKG in "${PKGS[@]}"; do
|
|
yay -S --noconfirm $PKG
|
|
done
|
|
|
|
cat <<EOF >> /home/$(whoami)/.config/mpv/mpv.conf
|
|
vo=vdpau
|
|
profile=opengl-hq
|
|
hwdec=vdpau
|
|
hwdec-codecs=all
|
|
scale=ewa_lanczossharp
|
|
cscale=ewa_lanczossharp
|
|
interpolation
|
|
tscale=oversample
|
|
EOF
|
|
|
|
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 |