From 4df7b8aa955e14c231fff5d1857aa732d751bda7 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Tue, 12 Dec 2023 14:16:38 +0900 Subject: small tweak on copy.sh --- copy.sh | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to 'copy.sh') diff --git a/copy.sh b/copy.sh index abd4efbb..7aedc27c 100755 --- a/copy.sh +++ b/copy.sh @@ -168,18 +168,14 @@ cp -r config/* ~/.config/ && { echo "${OK}Copy completed!"; } || { echo "${ERROR # copying Wallpapers mkdir -p ~/Pictures/wallpapers cp -r wallpapers ~/Pictures/ && { echo "${OK}Copy completed!"; } || { echo "${ERROR} Failed to copy wallpapers."; exit 1; } 2>&1 | tee -a "$LOG" - - - - + # Set some files as executable chmod +x ~/.config/hypr/scripts/* 2>&1 | tee -a "$LOG" # Set executable for initial-boot.sh chmod +x ~/.config/hypr/initial-boot.sh 2>&1 | tee -a "$LOG" - -#printf "\n\n" +printf "\n%.0s" {1..3} # Additional wallpaper echo "$(tput setaf 6) By default only a few wallpapers are copied...$(tput sgr0)" read -n1 -rep "${CAT} Would you like to download additional wallpapers? (y/n)" WALL @@ -195,8 +191,6 @@ if [[ $WALL =~ ^[Yy]$ ]]; then fi fi -# Initial Symlinks to avoid errors - # Detect machine type and set Waybar configurations accordingly, logging the output if hostnamectl | grep -q 'Chassis: desktop'; then # Configurations for a desktop -- cgit v1.2.3 From f94148c9295487318aef9ecbb1785001e5cd0672 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Tue, 12 Dec 2023 14:28:40 +0900 Subject: small tweak copy.sh --- copy.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'copy.sh') diff --git a/copy.sh b/copy.sh index 7aedc27c..f607209e 100755 --- a/copy.sh +++ b/copy.sh @@ -138,6 +138,8 @@ elif [ "$resolution" == "≥ 1440p" ]; then cp -r config/rofi/resolution/1440p/* config/rofi/ fi +printf "\n%.0s" {1..2} + ### Copy Config Files ### set -e # Exit immediately if a command exits with a non-zero status. @@ -212,7 +214,7 @@ wal -i ~/Pictures/wallpapers/anime-girl-abyss.png 2>&1 | tee -a "$LOG" #initial symlink for Pywal Dark and Light for Rofi Themes ln -sf "$HOME/.cache/wal/colors-rofi-dark.rasi" "$HOME/.config/rofi/pywal-color/pywal-theme.rasi" -printf "\n\n" +printf "\n%.0s" {1..2} printf "\n${OK} Copy Completed!\n\n\n" printf "${ORANGE} ATTENTION!!!! \n" printf "${ORANGE} YOU NEED to logout and re-login or reboot to avoid issues\n\n" -- cgit v1.2.3