aboutsummaryrefslogtreecommitdiff
path: root/background
blob: 67292373adb1621203a909ba6d86c0c16567a580 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/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"