mirror of
https://github.com/olexsmir/dotfiles.git
synced 2026-01-15 16:51:34 +02:00
7 lines
114 B
Bash
7 lines
114 B
Bash
#!/bin/sh
|
|
WALLPATH="~/Pictures/wallp"
|
|
|
|
while true; do
|
|
feh --randomize --bg-scale $WALLPATH
|
|
sleep 900
|
|
done
|