mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-02 04:37:49 +02:00
26 lines
727 B
Bash
Executable File
26 lines
727 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=Set the current background image
|
|
# omarchy:args=<path-to-image>
|
|
# omarchy:examples=omarchy theme bg set ~/Pictures/background.png
|
|
|
|
if [[ -z $1 ]]; then
|
|
echo "Usage: omarchy-theme-bg-set <path-to-image>" >&2
|
|
exit 1
|
|
fi
|
|
|
|
BACKGROUND="$(realpath "$1")"
|
|
CURRENT_BACKGROUND_LINK="$HOME/.config/omarchy/current/background"
|
|
|
|
if [[ ! -f $BACKGROUND ]]; then
|
|
echo "File does not exist: $BACKGROUND" >&2
|
|
exit 1
|
|
fi
|
|
|
|
# Create symlink to the new background
|
|
ln -nsf "$BACKGROUND" "$CURRENT_BACKGROUND_LINK"
|
|
|
|
# Update the live shell background immediately when it is running. The
|
|
# background plugin also polls this symlink, but IPC avoids the visible delay.
|
|
omarchy-shell -q background set "$BACKGROUND"
|