Gracias
barna_rasta
Voy a probarlo a ver qué tal.
De momento lo que hice fue modificar el script de la siguiente manera (le creé un ciclo infinito y un delay de 1 minuto).
Código BASH:
Ver original#!/bin/bash
isImage=0
if [ -z $1 ]; then
echo "$0 <String path>"
exit 1
fi
while [ 1 ]; do
image=`ls -1 $1 | shuf -n1`
echo $image
fileType=`file $1$image`
echo $fileType
if [[ $fileType == *"image"* ]]; then
dconf write /org/mate/desktop/background/picture-filename "'${1}${image}'"
isImage=1
sleep 1m
fi
done
Y lo agregé a las aplicaciones de inicio (System->Preferences->Personal->Startup applications) de la siguiente manera:
Cita: /home/Lair/SH/wallpaper/ssd.sh /home/Lair/Pictures/walls/ &
Saludos y gracias nuevamente.