dotfiles-remastered/.local/share/scripts/set-bg.sh
2020-06-15 16:51:47 +02:00

16 lines
211 B
Bash
Executable File

#!/usr/bin/env sh
# required packages:
# - feh
set -e
[ -z "$@" ] && exit 0
LAST_BG_LOCATION="$XDG_CACHE_HOME/.last-bg"
feh --bg-scale $1
rm -f "$LAST_BG_LOCATION"
ln -s $1 $(realpath "$LAST_BG_LOCATION")