From 872618ac3bd76816ba89edb830d9929b8be63995 Mon Sep 17 00:00:00 2001 From: Don Williams Date: Thu, 29 Jan 2026 22:07:13 -0500 Subject: Added to copy.sh not startup On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: config/hypr/configs/Startup_Apps.conf modified: copy.sh --- copy.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'copy.sh') diff --git a/copy.sh b/copy.sh index 48882092..926d3609 100755 --- a/copy.sh +++ b/copy.sh @@ -535,6 +535,16 @@ else echo "${ERROR} Failed to copy some ${YELLOW}wallpapers${RESET}" | tee -a "$LOG" fi +# Ensure a default desktop wallpaper is set once (no per-login changes) +WALL_EFFECTS_DIR="$HOME/.config/hypr/wallpaper_effects" +DEFAULT_IMG="$PICTURES_DIR/wallpapers/Northern Lights3.png" +[ -f "$DEFAULT_IMG" ] || DEFAULT_IMG="$SCRIPT_DIR/wallpapers/Northern Lights3.png" + +mkdir -p "$WALL_EFFECTS_DIR" +if [ ! -f "$WALL_EFFECTS_DIR/.wallpaper_current" ] && [ -f "$DEFAULT_IMG" ]; then + cp -f "$DEFAULT_IMG" "$WALL_EFFECTS_DIR/.wallpaper_current" + echo "${OK} Default desktop wallpaper initialized." | tee -a "$LOG" +fi # Set some files as executable chmod +x "$HOME/.config/hypr/scripts/"* 2>&1 | tee -a "$LOG" -- cgit v1.2.3