aboutsummaryrefslogtreecommitdiff
path: root/wallpaper/setInitialWP.sh
blob: fc5d27134dc2d411e986f1f6937fb4464fd916e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

# Sets the initial wallpaper: either a specific one if default is set or a random one if default is not set.

defaultWP="$CONFIG_DEFAULTWP"

if [ -f "$defaultWP" ]; then
	wpPointer.sh "$defaultWP"
else
	setRandomWP.sh
fi