Files
omarchy/install/backgrounds.sh

10 lines
291 B
Bash
Raw Permalink Normal View History

BACKGROUNDS_DIR=~/.config/omarchy/backgrounds/
download_background_image() {
local url="$1"
local path="$2"
2025-06-19 08:25:55 -04:00
gum spin --title "Downloading $url as $path..." -- curl -sL -o "$BACKGROUNDS_DIR/$path" "$url"
}
for t in ~/.local/share/omarchy/themes/*; do source "$t/backgrounds.sh"; done