dotfiles/i3/wallpaper.sh
David Todd (c0de) d1dd6178ac Add i3 configuration
This should allow i3 to present with my configuration
if all the dependencies are installed and the default X
Session is set to use i3wm
2018-08-20 14:58:12 -05:00

28 lines
382 B
Bash

#!/bin/bash
shopt -s nullglob
#===change these config start===
#wallpapers directory path
path=~/Pictures/Wallpapers
#time interval
interval=5m
#===change these config end===
cd $path
while true; do
files=()
for i in *.jpg *.png; do
[[ -f $i ]] && files+=("$i")
done
range=${#files[@]}
((range)) && feh --bg-scale "${files[RANDOM % range]}"
sleep $interval
done