15 lines
282 B
Text
15 lines
282 B
Text
|
#!/bin/sh
|
||
|
|
||
|
# background: Set the background using `feh`.
|
||
|
|
||
|
IMAGES="$HOME/.local/backgrounds"
|
||
|
|
||
|
if [ "$1" = "-r" ]; then
|
||
|
feh --bg-scale --randomize "$IMAGES"
|
||
|
exit
|
||
|
fi
|
||
|
|
||
|
SELECTED=$(find "$IMAGES" -type f -printf '%f\n' | fzf)
|
||
|
|
||
|
[ -n "$SELECTED" ] && feh --bg-scale "$IMAGES/$SELECTED"
|