7 lines
116 B
Bash
7 lines
116 B
Bash
|
EXEC_SHELL_PATH=$(command -v bash)
|
||
|
|
||
|
while true; do
|
||
|
feh --randomize --bg-fill ~/wallpapers/*
|
||
|
sleep 60
|
||
|
done
|