mirror of
https://github.com/olexsmir/dotfiles.git
synced 2026-01-15 08:41:34 +02:00
9 lines
172 B
Bash
9 lines
172 B
Bash
#!/bin/bash
|
|
WALLPAPERS=/home/sasha/Изображения/Walpapper
|
|
SLEEP_TIME=60
|
|
|
|
while true; do
|
|
feh --randomize --bg-scale $WALLPAPERS/*
|
|
sleep $SLEEP_TIME;
|
|
done
|
|
|