16 lines
211 B
Bash
16 lines
211 B
Bash
|
#!/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")
|
||
|
|