Fix handling of directory paths containing spaces in installation script

This commit is contained in:
Mike Thai 2023-05-15 19:16:56 -04:00 committed by GitHub
parent 1dabf36c52
commit 2888d923e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,37 +11,37 @@ BBlack='\033[1;30m' BRed='\033[1;31m' BGreen='\033[1;32m' BYellow='\033[1;33m
BBlue='\033[1;34m' BPurple='\033[1;35m' BCyan='\033[1;36m' BWhite='\033[1;37m' BBlue='\033[1;34m' BPurple='\033[1;35m' BCyan='\033[1;36m' BWhite='\033[1;37m'
## Directories ---------------------------- ## Directories ----------------------------
DIR=`pwd` DIR="$(pwd)"
FONT_DIR="$HOME/.local/share/fonts" FONT_DIR="$HOME/.local/share/fonts"
ROFI_DIR="$HOME/.config/rofi" ROFI_DIR="$HOME/.config/rofi"
# Install Fonts # Install Fonts
install_fonts() { install_fonts() {
echo -e ${BBlue}"\n[*] Installing fonts..." ${Color_Off} echo -e "${BBlue}\n[*] Installing fonts..." "${Color_Off}"
if [[ -d "$FONT_DIR" ]]; then if [[ -d "$FONT_DIR" ]]; then
cp -rf $DIR/fonts/* "$FONT_DIR" cp -rf "$DIR/fonts/"* "$FONT_DIR"
else else
mkdir -p "$FONT_DIR" mkdir -p "$FONT_DIR"
cp -rf $DIR/fonts/* "$FONT_DIR" cp -rf "$DIR/fonts/"* "$FONT_DIR"
fi fi
echo -e ${BYellow}"[*] Updating font cache...\n" ${Color_Off} echo -e "${BYellow}[*] Updating font cache...\n" "${Color_Off}"
fc-cache fc-cache
} }
# Install Themes # Install Themes
install_themes() { install_themes() {
if [[ -d "$ROFI_DIR" ]]; then if [[ -d "$ROFI_DIR" ]]; then
echo -e ${BPurple}"[*] Creating a backup of your rofi configs..." ${Color_Off} echo -e "${BPurple}[*] Creating a backup of your rofi configs..." "${Color_Off}"
mv "$ROFI_DIR" "${ROFI_DIR}.${USER}" mv "$ROFI_DIR" "${ROFI_DIR}.${USER}"
fi fi
echo -e ${BBlue}"[*] Installing rofi configs..." ${Color_Off} echo -e "${BBlue}[*] Installing rofi configs..." "${Color_Off}"
{ mkdir -p "$ROFI_DIR"; cp -rf $DIR/files/* "$ROFI_DIR"; } { mkdir -p "$ROFI_DIR"; cp -rf "$DIR/files/"* "$ROFI_DIR"; }
if [[ -f "$ROFI_DIR/config.rasi" ]]; then if [[ -f "$ROFI_DIR/config.rasi" ]]; then
echo -e ${BGreen}"[*] Successfully Installed.\n" ${Color_Off} echo -e "${BGreen}[*] Successfully Installed.\n" "${Color_Off}"
exit 0 exit 0
else else
echo -e ${BRed}"[!] Failed to install.\n" ${Color_Off} echo -e "${BRed}[!] Failed to install.\n" "${Color_Off}"
exit 1 exit 1
fi fi
} }