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