14 lines
282 B
Bash
Executable file
14 lines
282 B
Bash
Executable file
#!/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"
|