From f495a4f8e2ebb7e313ce8293997ae0f2b12f37db Mon Sep 17 00:00:00 2001 From: Sho Date: Sat, 1 Aug 2026 23:29:47 +0900 Subject: [PATCH] fix: ensure fastfetch exact config deployment block is included in install.sh --- install.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/install.sh b/install.sh index 2198f31..0cf6387 100755 --- a/install.sh +++ b/install.sh @@ -246,6 +246,13 @@ deploy_configs() { chmod +x "${TARGET_CONFIG_DIR}/quickshell/services/python/"*.py 2>/dev/null || true fi + # Fastfetch Hampter Config + if [ -d "${SCRIPT_DIR}/fastfetch" ]; then + info "Deploying Fastfetch Hampter configuration to ${TARGET_CONFIG_DIR}/fastfetch..." + mkdir -p "${TARGET_CONFIG_DIR}/fastfetch" + cp -r "${SCRIPT_DIR}/fastfetch/"* "${TARGET_CONFIG_DIR}/fastfetch/" + fi + success "QuickShell configuration deployed successfully!" }