22 lines
771 B
Bash
Executable File
22 lines
771 B
Bash
Executable File
#!/bin/sh
|
|
|
|
#######################################################
|
|
# _ _ #
|
|
# | | | #
|
|
# __ ____ _| | |_ __ __ _ _ __ ___ _ __ ___ #
|
|
# \ \ /\ / / _` | | | '_ \ / _` | '_ \ / _ \ '__/ __| #
|
|
# \ V V / (_| | | | |_) | (_| | |_) | __/ | \__ \ #
|
|
# \_/\_/ \__,_|_|_| .__/ \__,_| .__/ \___|_| |___/ #
|
|
# | | | | #
|
|
# |_| |_| #
|
|
#######################################################
|
|
|
|
PICTURES="$HOME/.wallpapers/"
|
|
SHOWTIME="10m"
|
|
|
|
while true; do
|
|
find $PICTURES -type f \( -name '*.jpg' -o -name '*.png' \) -print0 | shuf -n1 -z | xargs -0 feh --bg-scale
|
|
sleep $SHOWTIME
|
|
done
|
|
|