dotwryn/bin/set-background
yage 4c274248f1 MISC
- added sync media directories
- zsh plugin update
2022-03-07 12:35:14 -07:00

15 lines
257 B
Bash
Executable File

#!/bin/zsh
source "$HOME/.config/wryn/env.zsh"
[ ! -d $WALLPAPER_PATH ] && exit 1
case $1 in
random )
feh --recursive --randomize --bg-fill $WALLPAPER_PATH
;;
* )
[ ! -f $WALLPAPER_PATH/$1 ] && exit 2
feh --bg-fill $WALLPAPER_PATH/$1
;;
esac