summaryrefslogtreecommitdiffstats
path: root/.local/bin/slidepaper
blob: 5b8f82b2021f42fae4caf853cfa22a67f6619297 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

#Description: A daemon that changes your wallpaper with changewallpaper every 15 minutes.

#Axioms: WALLPAPERS

#Dependencies: changewallpaper


cd ~/Pictures/wallpapers/ || exit 1

while true; do
/home/"$USER"/Documents/Scripts/changewallpaper & > /dev/null 2>&1
sleep 15m
done