Hyprland-dotfiles/2-install-hyprland.sh
Stephan Raabe fc83e0a87f Updates
2023-08-18 14:46:10 +02:00

89 lines
2.8 KiB
Bash
Executable File

#!/bin/bash
# _ _ _ _
# | | | |_ _ _ __ _ __| | __ _ _ __ __| |
# | |_| | | | | '_ \| '__| |/ _` | '_ \ / _` |
# | _ | |_| | |_) | | | | (_| | | | | (_| |
# |_| |_|\__, | .__/|_| |_|\__,_|_| |_|\__,_|
# |___/|_|
#
# by Stephan Raabe (2023)
# -----------------------------------------------------
# Install Script for Hyprland
# ------------------------------------------------------
# ------------------------------------------------------
# Confirm Start
# ------------------------------------------------------
source $(dirname "$0")/scripts/library.sh
clear
echo " _ _ _ _ "
echo " | | | |_ _ _ __ _ __| | __ _ _ __ __| | "
echo " | |_| | | | | ,_ \| ,__| |/ _\ | ,_ \ / _, | "
echo " | _ | |_| | |_) | | | | (_| | | | | (_| | "
echo " |_| |_|\__, | .__/|_| |_|\__,_|_| |_|\__,_| "
echo " |___/|_| "
echo " "
echo "by Stephan Raabe (2023)"
echo "------------------------------------------------------"
echo ""
while true; do
read -p "DO YOU WANT TO START THE INSTALLATION NOW? (Yy/Nn): " yn
case $yn in
[Yy]* )
echo "Installation started."
break;;
[Nn]* )
exit;
break;;
* ) echo "Please answer yes or no.";;
esac
done
echo ""
# ------------------------------------------------------
# Install required packages
# ------------------------------------------------------
echo ""
echo "-> Install main packages"
packagesPacman=("waybar");
packagesYay=("hyprland-git" "swww");
# ------------------------------------------------------
# Install required packages
# ------------------------------------------------------
_installPackagesPacman "${packagesPacman[@]}";
_installPackagesYay "${packagesYay[@]}";
# ------------------------------------------------------
# Install qtile configuration
# ------------------------------------------------------
echo ""
echo "-> Install Hyprland configuration"
while true; do
read -p "Do you want to install/replace the Hyprland configuration? (Yy/Nn): " yn
case $yn in
[Yy]* )
if [ -d ~/.config/hypr/ ]; then
rm -r ~/.config/hypr/
fi
_installSymLink ~/.config/hypr ~/dotfiles/hypr/ ~/.config
break;;
[Nn]* )
echo "Installation/Replacement of Hyprland configuration skipped."
break;;
* ) echo "Please answer yes or no.";;
esac
done
# ------------------------------------------------------
# Create symbolic links
# ------------------------------------------------------
echo "-> Create symbolic links"
_installSymLink ~/.config/waybar ~/dotfiles/waybar/ ~/.config
swww init
echo "DONE!"