mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
26 lines
671 B
Bash
Executable File
26 lines
671 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/wallpaper.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"
|
|
|
|
# Kill existing swaybg and start new one
|
|
pkill -x swaybg
|
|
setsid uwsm-app -- swaybg -i "$CURRENT_BACKGROUND_LINK" -m fill >/dev/null 2>&1 &
|