85 lines
2.2 KiB
Bash
Executable File
85 lines
2.2 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# shellcheck disable=SC1091
|
|
# shellcheck source=./setup.conf
|
|
SCRIPT_DIR="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &>/dev/null && pwd)"
|
|
|
|
CONFIG_FILE="$SCRIPT_DIR"/setup.conf
|
|
if [[ -f "$CONFIG_FILE" ]]; then
|
|
source "$CONFIG_FILE"
|
|
else
|
|
echo "ERROR! Missing file: setup.conf"
|
|
exit 0
|
|
fi
|
|
|
|
install_aur() {
|
|
"$AURHELPER" -S --noconfirm --needed "$@"
|
|
}
|
|
|
|
logo
|
|
title "Installing AUR helper"
|
|
|
|
cd "$HOME" || exit 0
|
|
case "$AURHELPER" in
|
|
"yay")
|
|
# install_pkg "go" permission error
|
|
git clone "https://aur.archlinux.org/yay.git"
|
|
;;
|
|
"trizen")
|
|
# install_pkg "perl"
|
|
git clone "https://aur.archlinux.org/trizen.git"
|
|
;;
|
|
"aurman")
|
|
git clone "https://aur.archlinux.org/aurman.git"
|
|
;;
|
|
"aura")
|
|
# install_pkg "stack"
|
|
git clone "https://aur.archlinux.org/aura.git"
|
|
;;
|
|
"pikaur")
|
|
git clone "https://aur.archlinux.org/pikaur.git"
|
|
;;
|
|
*)
|
|
something_failed
|
|
;;
|
|
esac
|
|
|
|
cd "$AURHELPER" || exit 0
|
|
makepkg -si --noconfirm
|
|
cd "$HOME" || exit 0
|
|
|
|
if [[ "$LAYOUT" -eq 1 ]]; then
|
|
while IFS= read -r LINE; do
|
|
echo "INSTALLING: $LINE"
|
|
install_aur "$LINE"
|
|
done <~/ArchTitus/pkg-files/aur-pkgs.txt
|
|
|
|
pip install konsave
|
|
konsave -i "$HOME"/ArchTitus/kde.knsv
|
|
sleep 1
|
|
konsave -a kde
|
|
cp -r "$HOME"/ArchTitus/dotfiles/* "$HOME"/.config/
|
|
fi
|
|
|
|
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
|
|
|
|
case "$DESKTOP" in
|
|
"lxqt")
|
|
install_aur sddm-nordic-theme-git
|
|
;;
|
|
"awesome")
|
|
install_aur rofi picom i3lock-fancy xclip ttf-roboto polkit-gnome materia-theme lxappearance flameshot pnmixer network-manager-applet xfce4-power-manager qt5-styleplugins papirus-icon-theme
|
|
git clone "https://github.com/ChrisTitusTech/titus-awesome" "$HOME"/.config/awesome
|
|
mkdir -p "$HOME"/.config/rofi
|
|
cp "$HOME"/.config/awesome/theme/config.rasi "$HOME"/.config/rofi/config.rasi
|
|
sed -i "/@import/c\@import $HOME/.config/awesome/theme/sidebar.rasi" "$HOME"/.config/rofi/config.rasi
|
|
;;
|
|
esac
|
|
|
|
export PATH=$PATH:$HOME/.local/bin
|
|
|
|
title "System ready for 3-post-setup.sh"
|