Files
niri-beyond-glass/scripts/niri-beyond-wallpaper
T
2026-07-27 13:39:29 +08:00

16 lines
311 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
state="${XDG_CONFIG_HOME:-$HOME/.config}/niri-beyond-glass/wallpaper"
wallpaper=""
if [[ -s "$state" ]]; then
IFS= read -r wallpaper < "$state"
fi
if [[ -n "$wallpaper" && -f "$wallpaper" ]]; then
exec swaybg -m fill -i "$wallpaper"
fi
exec swaybg -c '#15171a'