From e3f5c6fd65cd262f98658dab2799b3dc24743280 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 18 Sep 2026 03:48:29 +0000 Subject: [PATCH 1/2] Initial plan From c55dca888ace425b220b79368d2d0f3fa416e171 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 18 Sep 2026 03:51:15 +0000 Subject: [PATCH 2/2] Fix Arch installer syntax block for hyprlock copy Co-authored-by: Brainitech <116993889+Brainitech@users.noreply.github.com> --- dots-extra/install-arch.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/dots-extra/install-arch.sh b/dots-extra/install-arch.sh index 92dcb14..95329a8 100644 --- a/dots-extra/install-arch.sh +++ b/dots-extra/install-arch.sh @@ -381,13 +381,19 @@ mkdir -p "$USER_DATA" \ "$HOME/.config/hypr/shaders" \ "$HOME/.config/matugen/templates" -# Copy hypridle config; -n = do not overwrite if already customised +# Copy hypridle and hyprlock configs; -n = do not overwrite if already customised if cp -n "$REPO_DIR/src/config/hypridle.conf" "$HOME/.config/hypr/" 2>/dev/null; then log_ok "hypridle.conf → $HOME/.config/hypr/" else log_info "hypridle.conf already exists — not overwritten" fi +if cp -n "$REPO_DIR/src/config/hyprlock.conf" "$HOME/.config/hypr/" 2>/dev/null; then + log_ok "hyprlock.conf → $HOME/.config/hypr/" +else + log_info "hyprlock.conf already exists — not overwritten" +fi + printf '{"configProvider": "%s"}\n' "$CONFIG_TYPE" > "$USER_DATA/config_Provider.json" printf '{}\n' > "$USER_DATA/keybinds.json"