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